-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00a4e6b
commit 23dd559
Showing
10 changed files
with
264 additions
and
249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/VisualStudio/Core/Def/Implementation/DesignerAttribute/DesignerAttributeData.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
using System.Collections.Immutable; | ||
using Microsoft.CodeAnalysis; | ||
using Microsoft.CodeAnalysis.DesignerAttributes; | ||
|
||
namespace Microsoft.VisualStudio.LanguageServices.Implementation.DesignerAttribute | ||
{ | ||
internal class DesignerAttributeData | ||
{ | ||
public readonly VersionStamp SemanticVersion; | ||
public readonly ImmutableDictionary<string, DesignerAttributeResult> PathToResult; | ||
|
||
public DesignerAttributeData(VersionStamp semanticVersion, ImmutableDictionary<string, DesignerAttributeResult> pathToResult) | ||
{ | ||
SemanticVersion = semanticVersion; | ||
PathToResult = pathToResult; | ||
} | ||
} | ||
} |
Oops, something went wrong.