Skip to content

Commit

Permalink
Rename Analyzer > GitInfo.CodeAnalysis
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Feb 10, 2023
1 parent 6497e93 commit 705c056
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GitInfo.sln
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{13B669BE-BB05-4DDF-9536-439F39A36129}") = "GitInfo", "src\GitInfo\GitInfo.msbuildproj", "{1D5D9080-CF62-49E1-87AC-F2EDA58A824E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Analyzer", "src\Analyzer\Analyzer.csproj", "{B96EB399-A569-4C4B-A702-99D6050B1FAF}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodeAnalysis", "src\Analyzer\CodeAnalysis.csproj", "{B96EB399-A569-4C4B-A702-99D6050B1FAF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>GitInfo.CodeAnalysis</AssemblyName>
<TargetFramework>netstandard2.0</TargetFramework>
<PackFolder>analyzers/dotnet</PackFolder>
</PropertyGroup>
Expand Down
3 changes: 2 additions & 1 deletion src/Analyzer/SponsorLinker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ namespace GitInfo;
class SponsorLinker : SponsorLink
{
public SponsorLinker() : base(SponsorLinkSettings.Create(
"devlooped", "GitInfo",
"devlooped", "GitInfo",
packageId: "GitInfo",
version: new Version(ThisAssembly.Info.Version).ToString(2)
#if DEBUG
, quietDays: 0
Expand Down
2 changes: 1 addition & 1 deletion src/GitInfo/GitInfo.msbuildproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<None Include="..\..\readme.md" PackagePath="readme.md" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Analyzer\Analyzer.csproj" />
<ProjectReference Include="..\Analyzer\CodeAnalysis.csproj" />
</ItemGroup>
</Project>

0 comments on commit 705c056

Please sign in to comment.