Skip to content

Commit

Permalink
Updated references from Litee to rjmurillo (#68)
Browse files Browse the repository at this point in the history
After transfer of ownership, URLs needed to be updated in a few places:

- README.md
- Comments in code
- Moq.Analyzers.csproj for NuGet package
- Verified NuSpec

Fixes #67
  • Loading branch information
rjmurillo authored Jun 7, 2024
1 parent 3a04df3 commit 187d12d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ You must use an in-support version of the .NET SDK (i.e. 6+).

Moq.Analyzers continues to evolve and add new features. Any help will be appreciated. You can report issues, develop new features, improve the documention, or do other cool stuff.

If you want to contribute to existing issues, check the [help wanted](https://github.com/Litee/moq.analyzers/labels/help%20wanted) or [good first issue](https://github.com/Litee/moq.analyzers/labels/good%20first%20issue) items in the backlog. If you have new ideas or want to complain about bugs, feel free to [create a new issue](https://github.com/Litee/moq.analyzers/issues/new).
If you want to contribute to existing issues, check the [help wanted](https://github.com/rjmurillo/moq.analyzers/labels/help%20wanted) or [good first issue](https://github.com/rjmurillo/moq.analyzers/labels/good%20first%20issue) items in the backlog. If you have new ideas or want to complain about bugs, feel free to [create a new issue](https://github.com/rjmurillo/moq.analyzers/issues/new).

## Code of Conduct

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public static TAnalyzerTest SetDefaults<TAnalyzerTest, TVerifier>(this TAnalyzer
where TAnalyzerTest : AnalyzerTest<TVerifier>
where TVerifier : IVerifier, new()
{
test.ReferenceAssemblies = ReferenceAssemblies.Net.Net80.AddPackages([new PackageIdentity("Moq", "4.8.2")]); // TODO: See https://github.com/Litee/moq.analyzers/issues/58
test.ReferenceAssemblies = ReferenceAssemblies.Net.Net80.AddPackages([new PackageIdentity("Moq", "4.8.2")]); // TODO: See https://github.com/rjmurillo/moq.analyzers/issues/58
test.TestBehaviors = TestBehaviors.SkipGeneratedCodeCheck; // TODO: We should enable the generated code check

return test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<license type="expression">BSD-3-Clause</license>
<licenseUrl>https://licenses.nuget.org/BSD-3-Clause</licenseUrl>
<readme>README.md</readme>
<projectUrl>https://github.com/Litee/moq.analyzers</projectUrl>
<projectUrl>https://github.com/rjmurillo/moq.analyzers</projectUrl>
<description>Roslyn analyzer that helps to write unit tests using Moq mocking library by highlighting typical errors and suggesting quick fixes. Port of Resharper extension to Roslyn. Find the full list of detected issues at project GitHub page.</description>
<releaseNotes>A changelog is available at https://github.com/Litee/moq.analyzers/releases</releaseNotes>
<releaseNotes>A changelog is available at https://github.com/rjmurillo/moq.analyzers/releases</releaseNotes>
<copyright>2017 Andrey Lipatkin</copyright>
<tags>moq, tdd, mocking, mocks, unittesting, agile, unittest, mock, test, analyzers</tags>
<repository type="git" url="https://github.com/********/moq.analyzers.git" commit="****************************************" />
Expand Down
4 changes: 2 additions & 2 deletions Source/Moq.Analyzers/Moq.Analyzers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
<PackageId>Moq.Analyzers</PackageId>
<Authors>Matt Kotsenas, Andrey "Litee" Lipatkin, Richard Murillo</Authors>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Litee/moq.analyzers</PackageProjectUrl>
<PackageProjectUrl>https://github.com/rjmurillo/moq.analyzers</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>Roslyn analyzer that helps to write unit tests using Moq mocking library by highlighting typical errors and suggesting quick fixes. Port of Resharper extension to Roslyn. Find the full list of detected issues at project GitHub page.</Description>
<PackageReleaseNotes>A changelog is available at https://github.com/Litee/moq.analyzers/releases</PackageReleaseNotes>
<PackageReleaseNotes>A changelog is available at https://github.com/rjmurillo/moq.analyzers/releases</PackageReleaseNotes>
<Copyright>2017 Andrey Lipatkin</Copyright>
<PackageTags>moq, tdd, mocking, mocks, unittesting, agile, unittest, mock, test, analyzers</PackageTags>
<DevelopmentDependency>true</DevelopmentDependency>
Expand Down

0 comments on commit 187d12d

Please sign in to comment.