-
Notifications
You must be signed in to change notification settings - Fork 3
Refactor to support RS1038 #216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
4f3cdd5
Quick refactor to support RS1038
rjmurillo 5e40fae
Merge branch 'main' into feature/rs1038-resolution
rjmurillo 172268b
Ensure the code fixes are also packaged in the NuGet
rjmurillo 775aa71
Remove tabs and fix indentation
rjmurillo 948ce3c
Remove unnecessary using statements
rjmurillo ad79a74
Update namespace of code fix to align with new project structure
rjmurillo d934c48
Fix for CS1574
rjmurillo 428dac6
Fixes for SA1503
rjmurillo 9bcc8c9
Add SquiggleCop baseline for Moq.CodeFixes project
rjmurillo e8ff90d
Update to use 4.3.1 (.NET 6) code analysis and workspace
rjmurillo 0d69c55
Update package test baseline to include code fix DLL
rjmurillo e45e55f
Move the C# analyzer reference next to the workspace since we want th…
rjmurillo dea2f74
Update include for package include to include `Moq.*.dll` to avoid fu…
rjmurillo b50ff4c
Remove reference to code fix project through BDN project (it's transi…
rjmurillo edc4d56
Remove project reference to code fix (it's transitively included)
rjmurillo 5b3e4e4
Update method of including analyzer and code fix DLLs
rjmurillo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,26 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<PropertyGroup> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<RootNamespace>Moq.CodeFixes</RootNamespace> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<AssemblyName>Moq.CodeFixes</AssemblyName> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<TargetFramework>netstandard2.0</TargetFramework> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</PropertyGroup> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
<ItemGroup> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<Compile Include="..\Moq.Analyzers\Common\DiagnosticIds.cs" Link="Common\DiagnosticIds.cs" /> | ||
<Compile Include="..\Moq.Analyzers\Common\MoqMethodDescriptorBase.cs" Link="Common\MoqMethodDescriptorBase.cs" /> | ||
<Compile Include="..\Moq.Analyzers\Common\SemanticModelExtensions.cs" Link="Common\SemanticModelExtensions.cs" /> | ||
<Compile Include="..\Moq.Analyzers\Common\WellKnownTypeNames.cs" Link="Common\WellKnownTypeNames.cs" /> | ||
<Compile Include="..\Moq.Analyzers\GlobalUsings.cs" Link="GlobalUsings.cs" /> | ||
<Compile Include="..\Moq.Analyzers\MoqSetupMethodDescriptor.cs" Link="MoqSetupMethodDescriptor.cs" /> | ||
</ItemGroup> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
<ItemGroup> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" PrivateAssets="all" /> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</ItemGroup> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
<ItemGroup> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<Folder Include="Common\" /> | ||
</ItemGroup> | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
</Project> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.