-
Notifications
You must be signed in to change notification settings - Fork 509
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #488 from pdelvo/roslyn_1_0_0_rc
- Loading branch information
Showing
71 changed files
with
227 additions
and
376 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
20 changes: 20 additions & 0 deletions
20
StyleCop.Analyzers/StyleCop.Analyzers.Test/Helpers/OpenIssueAttribute.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 @@ | ||
namespace StyleCop.Analyzers.Test.Helpers | ||
{ | ||
/// <summary> | ||
/// Indicates that a specific test is related to an open issue. | ||
/// </summary> | ||
[System.AttributeUsage(System.AttributeTargets.All, Inherited = false, AllowMultiple = true)] | ||
public sealed class OpenIssueAttribute : System.Attribute | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="OpenIssueAttribute"/> class. | ||
/// </summary> | ||
/// <param name="issue">A link to the open issue.</param> | ||
public OpenIssueAttribute(string issue) | ||
{ | ||
this.Issue = issue; | ||
} | ||
|
||
public string Issue { get; } | ||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Microsoft.CodeAnalysis.Common" version="1.0.0.0-beta2" targetFramework="net45" /> | ||
<package id="Microsoft.CodeAnalysis.CSharp" version="1.0.0.0-beta2" targetFramework="net45" /> | ||
<package id="Microsoft.CodeAnalysis.CSharp.Workspaces" version="1.0.0.0-beta2" targetFramework="net45" /> | ||
<package id="Microsoft.CodeAnalysis.Workspaces.Common" version="1.0.0.0-beta2" targetFramework="net45" /> | ||
<package id="Microsoft.CodeAnalysis.Analyzers" version="1.0.0-rc1" targetFramework="net45" /> | ||
<package id="Microsoft.CodeAnalysis.Common" version="1.0.0-rc1" targetFramework="net45" /> | ||
<package id="Microsoft.CodeAnalysis.CSharp" version="1.0.0-rc1" targetFramework="net45" /> | ||
<package id="Microsoft.CodeAnalysis.CSharp.Workspaces" version="1.0.0-rc1" targetFramework="net45" /> | ||
<package id="Microsoft.CodeAnalysis.Workspaces.Common" version="1.0.0-rc1" targetFramework="net45" /> | ||
<package id="Microsoft.Composition" version="1.0.27" targetFramework="net45" /> | ||
<package id="StyleCop.Analyzers" version="1.0.0-alpha003" targetFramework="net45" /> | ||
<package id="System.Collections.Immutable" version="1.1.32-beta" targetFramework="net45" /> | ||
<package id="System.Reflection.Metadata" version="1.0.17-beta" targetFramework="net45" /> | ||
<package id="System.Collections.Immutable" version="1.1.33-beta" targetFramework="net45" /> | ||
<package id="System.Reflection.Metadata" version="1.0.18-beta" targetFramework="net45" /> | ||
</packages> |
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
Oops, something went wrong.