Skip to content

Commit

Permalink
Migrate to .NET Foundation (except file banners) (dotnet#1206)
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt authored and JochemHarmes committed Oct 30, 2023
1 parent 0be6a31 commit bf1b0ff
Show file tree
Hide file tree
Showing 44 changed files with 96 additions and 74 deletions.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Update logo ([#1208](https://github.com/dotnet/roslynator/pull/1208)).
- Migrate to .NET Foundation ([#1206](https://github.com/dotnet/roslynator/pull/1206))

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) Josef Pihrt. All rights reserved.
Copyright (c) .NET Foundation and Contributors. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use
these files except in compliance with the License. You may obtain a copy of the
Expand Down
14 changes: 14 additions & 0 deletions NOTICE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
This project contains code from https://github.com/JosefPihrt/Orang

Copyright (c) Josef Pihrt. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use
these files except in compliance with the License. You may obtain a copy of the
License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,17 @@ Roslynator is a set of code analysis tools for C#, powered by [Roslyn](https://g

Contributions are welcome! If you are interested please see:
- documentation for [developers](https://josefpihrt.github.io/docs/roslynator/developers)
- available [issues](https://github.com/JosefPihrt/Roslynator/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Aup-for-grabs)
- available [issues](https://github.com/dotnet/roslynator/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3Aup-for-grabs)

TIP: Bugfixes or small improvements can be implemented right away. Larger task like adding new analyzer or refactoring should be discussed first.

## .NET Foundation

This project is supported by the [.NET Foundation](https://www.dotnetfoundation.org/projects).

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.
For more information see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct).

## Command Line Tool

Run following command to install Roslynator command line tool:
Expand All @@ -45,9 +52,9 @@ See [documentation](https://josefpihrt.github.io/docs/roslynator/cli) for furthe
- Roslynator Testing Framework can be used for unit testing of analyzers, refactorings and code fixes.
- Framework is distributed as NuGet [package](https://www.nuget.org/packages/Roslynator.Testing.CSharp.Xunit).  [![NuGet](https://img.shields.io/nuget/v/Roslynator.Testing.CSharp.Xunit.svg)](https://www.nuget.org/packages/Roslynator.Testing.CSharp.Xunit)
- Learn how to use the framework from actual usages in Roslynator repo:
- Tests of analyzers are [here](https://github.com/JosefPihrt/Roslynator/tree/main/src/Tests/Analyzers.Tests), [here](https://github.com/JosefPihrt/Roslynator/tree/main/src/Tests/CodeAnalysis.Analyzers.Tests) and [here](https://github.com/JosefPihrt/Roslynator/tree/main/src/Tests/Formatting.Analyzers.Tests)
- Tests of refactorings are [here](https://github.com/JosefPihrt/Roslynator/tree/main/src/Tests/Refactorings.Tests)
- Tests of fixes of compiler diagnostics are [here](https://github.com/JosefPihrt/Roslynator/tree/main/src/Tests/CodeFixes.Tests)
- Tests of analyzers are [here](https://github.com/dotnet/roslynator/tree/main/src/Tests/Analyzers.Tests), [here](https://github.com/dotnet/roslynator/tree/main/src/Tests/CodeAnalysis.Analyzers.Tests) and [here](https://github.com/dotnet/roslynator/tree/main/src/Tests/Formatting.Analyzers.Tests)
- Tests of refactorings are [here](https://github.com/dotnet/roslynator/tree/main/src/Tests/Refactorings.Tests)
- Tests of fixes of compiler diagnostics are [here](https://github.com/dotnet/roslynator/tree/main/src/Tests/CodeFixes.Tests)

## Client Libraries

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ Any vulnerabilities that affect older versions will be considered on a case-by-c

## Reporting a Vulnerability

Please report (suspected) security vulnerabilities to GitHub [issues](https://github.com/JosefPihrt/Roslynator/issues/new).
Please report (suspected) security vulnerabilities to GitHub [issues](https://github.com/dotnet/roslynator/issues/new).
Once confirmed, we will release a patch as soon as possible.
4 changes: 2 additions & 2 deletions src/Analyzers.CodeFixes/Roslynator.Analyzers.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<authors>Josef Pihrt</authors>
<owners>Josef Pihrt</owners>
<license type="expression">Apache-2.0</license>
<projectUrl>https://github.com/josefpihrt/roslynator</projectUrl>
<projectUrl>https://github.com/dotnet/roslynator</projectUrl>
<icon>icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A collection of 200+ analyzers for C#, powered by Roslyn.
Expand All @@ -16,7 +16,7 @@
<copyright>Copyright (c) 2016-2023 Josef Pihrt</copyright>
<tags>Roslyn Analyzer Refactoring Productivity CodeAnalysis C# CSharp</tags>
<developmentDependency>true</developmentDependency>
<repository type="git" url="https://github.com/josefpihrt/roslynator.git" />
<repository type="git" url="https://github.com/dotnet/roslynator.git" />
<readme>docs\README.md</readme>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion src/Analyzers.CodeFixes/docs/NuGetReadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A collection of 200+ [analyzers](https://josefpihrt.github.io/docs/roslynator/an

## Feedback

* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new)
* File an issue on [GitHub](https://github.com/dotnet/roslynator/issues/new)
* Follow on [Twitter](https://twitter.com/roslynator)

## Related Products
Expand Down
2 changes: 1 addition & 1 deletion src/Analyzers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1450,7 +1450,7 @@ Default maximum length is 140.</Summary>
</ConfigOptions>
<Remarks>Code fixer is available for this analyzer but it cannot handle all cases as it's not possible to wrap a line in all cases (e.g. long string literals).

If a particular line seems that it could be reasonably wrapped but it's not, please file an [issue](https://github.com/JosefPihrt/Roslynator/issues/new).
If a particular line seems that it could be reasonably wrapped but it's not, please file an [issue](https://github.com/dotnet/roslynator/issues/new).
</Remarks>
</Analyzer>
<Analyzer>
Expand Down
4 changes: 2 additions & 2 deletions src/CSharp.Workspaces/CSharp.Workspaces.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ Roslynator.CSharp.SyntaxInfo
Roslynator.NameGenerator</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/josefpihrt/roslynator</PackageProjectUrl>
<PackageProjectUrl>https://github.com/dotnet/roslynator</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags>Roslyn;Analyzer;Refactoring;Productivity;CodeAnalysis;C#;CSharp</PackageTags>
<PackageReadmeFile>docs/README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/josefpihrt/roslynator.git</RepositoryUrl>
<RepositoryUrl>https://github.com/dotnet/roslynator.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/CSharp.Workspaces/docs/NuGetReadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This package extends functionality of package [Microsoft.CodeAnalysis.CSharp.Wor

## Feedback

* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new)
* File an issue on [GitHub](https://github.com/dotnet/roslynator/issues/new)
* Follow on [Twitter](https://twitter.com/roslynator)

## Related Products
Expand Down
4 changes: 2 additions & 2 deletions src/CSharp/CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ Roslynator.CSharp.SyntaxInfo
Roslynator.NameGenerator</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/josefpihrt/roslynator</PackageProjectUrl>
<PackageProjectUrl>https://github.com/dotnet/roslynator</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags>Roslyn;Analyzer;Refactoring;Productivity;CodeAnalysis;C#;CSharp</PackageTags>
<PackageReadmeFile>docs/README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/josefpihrt/roslynator.git</RepositoryUrl>
<RepositoryUrl>https://github.com/dotnet/roslynator.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/CSharp/docs/NuGetReadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This package extends functionality of package [Microsoft.CodeAnalysis.CSharp](ht

## Feedback

* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new)
* File an issue on [GitHub](https://github.com/dotnet/roslynator/issues/new)
* Follow on [Twitter](https://twitter.com/roslynator)

## Related Products
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<authors>Josef Pihrt</authors>
<owners>Josef Pihrt</owners>
<license type="expression">Apache-2.0</license>
<projectUrl>https://github.com/josefpihrt/roslynator</projectUrl>
<projectUrl>https://github.com/dotnet/roslynator</projectUrl>
<icon>icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A collection of analyzers for Roslyn API.
Expand All @@ -17,7 +17,7 @@
<copyright>Copyright (c) 2016-2023 Josef Pihrt</copyright>
<tags>Roslyn Analyzer CodeAnalysis C# CSharp</tags>
<developmentDependency>true</developmentDependency>
<repository type="git" url="https://github.com/josefpihrt/roslynator.git" />
<repository type="git" url="https://github.com/dotnet/roslynator.git" />
<readme>docs\README.md</readme>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion src/CodeAnalysis.Analyzers.CodeFixes/docs/NuGetReadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The package is applicable for projects that reference Roslyn packages (Microsoft

## Feedback

* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new)
* File an issue on [GitHub](https://github.com/dotnet/roslynator/issues/new)
* Follow on [Twitter](https://twitter.com/roslynator)

## Related Products
Expand Down
4 changes: 2 additions & 2 deletions src/CodeFixes/Roslynator.CodeFixes.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<authors>Josef Pihrt</authors>
<owners>Josef Pihrt</owners>
<license type="expression">Apache-2.0</license>
<projectUrl>https://github.com/JosefPihrt/Roslynator</projectUrl>
<projectUrl>https://github.com/dotnet/roslynator</projectUrl>
<icon>icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A collection of code fixes for C# compiler diagnostics (CS....), powered by Roslyn.
Expand All @@ -17,7 +17,7 @@
<copyright>Copyright (c) 2016-2023 Josef Pihrt</copyright>
<tags>Roslyn Analyzer Refactoring Productivity CodeAnalysis C# CSharp</tags>
<developmentDependency>true</developmentDependency>
<repository type="git" url="https://github.com/JosefPihrt/Roslynator.git" />
<repository type="git" url="https://github.com/dotnet/roslynator.git" />
</metadata>
<files>
<file src="bin\$Configuration$\netstandard1.3\Roslynator*.dll" target="analyzers\dotnet\cs" />
Expand Down
4 changes: 2 additions & 2 deletions src/CommandLine/CommandLine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
<PackageVersion>$(RoslynatorCliPackageVersion)</PackageVersion>
<Authors>Josef Pihrt</Authors>
<Description>Roslynator command-line tool for .NET Core</Description>
<PackageProjectUrl>https://github.com/josefpihrt/roslynator</PackageProjectUrl>
<PackageProjectUrl>https://github.com/dotnet/roslynator</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>CLI;Roslyn;C#;CSharp</PackageTags>
<PackageReadmeFile>docs/README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/josefpihrt/roslynator.git</RepositoryUrl>
<RepositoryUrl>https://github.com/dotnet/roslynator.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/CommandLine/CommandLine.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<authors>Josef Pihrt</authors>
<owners>Josef Pihrt</owners>
<license type="expression">Apache-2.0</license>
<projectUrl>https://github.com/josefpihrt/roslynator</projectUrl>
<projectUrl>https://github.com/dotnet/roslynator</projectUrl>
<icon>icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Roslynator command-line tool</description>
<summary>Roslynator command-line tool</summary>
<copyright>Copyright (c) 2017-2022 Josef Pihrt</copyright>
<tags>CLI Roslyn C# CSharp VB VisualBasic</tags>
<developmentDependency>true</developmentDependency>
<repository type="git" url="https://github.com/josefpihrt/roslynator.git" />
<repository type="git" url="https://github.com/dotnet/roslynator.git" />
<readme>docs\README.md</readme>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion src/CommandLine/docs/NetCore/NuGetReadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ See [documentation](https://josefpihrt.github.io/docs/roslynator/cli) for a full

## Feedback

* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new)
* File an issue on [GitHub](https://github.com/dotnet/roslynator/issues/new)
* Follow on [Twitter](https://twitter.com/roslynator)

## Related Products
Expand Down
2 changes: 1 addition & 1 deletion src/CommandLine/docs/NetFramework/NuGetReadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ See [documentation](https://josefpihrt.github.io/docs/roslynator/cli) for a full

## Feedback

* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new)
* File an issue on [GitHub](https://github.com/dotnet/roslynator/issues/new)
* Follow on [Twitter](https://twitter.com/roslynator)

## Related Products
Expand Down
4 changes: 2 additions & 2 deletions src/Core/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
<Description>This library extends functionality of package Microsoft.CodeAnalysis.Common.</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/josefpihrt/roslynator</PackageProjectUrl>
<PackageProjectUrl>https://github.com/dotnet/roslynator</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags>Roslyn;CodeAnalysis</PackageTags>
<PackageReadmeFile>docs/README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/josefpihrt/roslynator.git</RepositoryUrl>
<RepositoryUrl>https://github.com/dotnet/roslynator.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Core/docs/NuGetReadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This package extends functionality of package [Microsoft.CodeAnalysis.Common](ht

## Feedback

* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new)
* File an issue on [GitHub](https://github.com/dotnet/roslynator/issues/new)
* Follow on [Twitter](https://twitter.com/roslynator)

## Related Products
Expand Down
4 changes: 2 additions & 2 deletions src/Documentation/Documentation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ Roslynator.Documentation.DocumentationWriter
Roslynator.Documentation.DocumentationGenerator</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/JosefPihrt/Roslynator</PackageProjectUrl>
<PackageProjectUrl>https://github.com/dotnet/roslynator</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags>Roslyn;Documentation;GitHub;C#;CSharp</PackageTags>
<RepositoryUrl>https://github.com/JosefPihrt/Roslynator.git</RepositoryUrl>
<RepositoryUrl>https://github.com/dotnet/roslynator.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<authors>Josef Pihrt</authors>
<owners>Josef Pihrt</owners>
<license type="expression">Apache-2.0</license>
<projectUrl>https://github.com/josefpihrt/roslynator</projectUrl>
<projectUrl>https://github.com/dotnet/roslynator</projectUrl>
<icon>icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A collection of formatting analyzers, powered by Roslyn.
Expand All @@ -17,7 +17,7 @@
<copyright>Copyright (c) 2016-2023 Josef Pihrt</copyright>
<tags>Roslyn Analyzer Formatting Productivity CodeAnalysis C# CSharp</tags>
<developmentDependency>true</developmentDependency>
<repository type="git" url="https://github.com/josefpihrt/roslynator.git" />
<repository type="git" url="https://github.com/dotnet/roslynator.git" />
<readme>docs\README.md</readme>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion src/Formatting.Analyzers.CodeFixes/docs/NuGetReadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A collection of formatting [analyzers](https://josefpihrt.github.io/docs/roslyna

## Feedback

* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new)
* File an issue on [GitHub](https://github.com/dotnet/roslynator/issues/new)
* Follow on [Twitter](https://twitter.com/roslynator)

## Related Products
Expand Down
4 changes: 2 additions & 2 deletions src/Tests/Testing.CSharp.MSTest/Testing.CSharp.MSTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
<Description>Testing framework for Roslyn analyzers, refactorings and code fixes.</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/josefpihrt/roslynator</PackageProjectUrl>
<PackageProjectUrl>https://github.com/dotnet/roslynator</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags>Roslyn;CodeAnalysis;Test;UnitTest</PackageTags>
<PackageReadmeFile>docs/README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/josefpihrt/roslynator.git</RepositoryUrl>
<RepositoryUrl>https://github.com/dotnet/roslynator.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

Expand Down
8 changes: 4 additions & 4 deletions src/Tests/Testing.CSharp.MSTest/docs/NuGetReadme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ Test framework for unit testing of [Roslyn](https://github.com/dotnet/roslyn) an

Learn how to use the framework from actual usages in Roslynator repository:

* Tests of analyzers are [here](https://github.com/josefpihrt/roslynator/tree/main/src/Tests/Analyzers.Tests), [here](https://github.com/josefpihrt/roslynator/tree/main/src/Tests/CodeAnalysis.Analyzers.Tests) and [here](https://github.com/josefpihrt/roslynator/tree/main/src/Tests/Formatting.Analyzers.Tests).
* Tests of refactorings are [here](https://github.com/josefpihrt/roslynator/tree/main/src/Tests/Refactorings.Tests).
* Tests of fixes of compiler diagnostics are [here](https://github.com/josefpihrt/roslynator/tree/main/src/Tests/CodeFixes.Tests).
* Tests of analyzers are [here](https://github.com/dotnet/roslynator/tree/main/src/Tests/Analyzers.Tests), [here](https://github.com/dotnet/roslynator/tree/main/src/Tests/CodeAnalysis.Analyzers.Tests) and [here](https://github.com/dotnet/roslynator/tree/main/src/Tests/Formatting.Analyzers.Tests).
* Tests of refactorings are [here](https://github.com/dotnet/roslynator/tree/main/src/Tests/Refactorings.Tests).
* Tests of fixes of compiler diagnostics are [here](https://github.com/dotnet/roslynator/tree/main/src/Tests/CodeFixes.Tests).

## Feedback

* File an issue on [GitHub](https://github.com/josefpihrt/roslynator/issues/new)
* File an issue on [GitHub](https://github.com/dotnet/roslynator/issues/new)
* Follow on [Twitter](https://twitter.com/roslynator)

## Related Products
Expand Down
4 changes: 2 additions & 2 deletions src/Tests/Testing.CSharp.Xunit/Testing.CSharp.Xunit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
<Description>Testing framework for Roslyn analyzers, refactorings and code fixes.</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/josefpihrt/roslynator</PackageProjectUrl>
<PackageProjectUrl>https://github.com/dotnet/roslynator</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageTags>Roslyn;CodeAnalysis;Test;UnitTest</PackageTags>
<PackageReadmeFile>docs/README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/josefpihrt/roslynator.git</RepositoryUrl>
<RepositoryUrl>https://github.com/dotnet/roslynator.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

Expand Down
Loading

0 comments on commit bf1b0ff

Please sign in to comment.