Skip to content

Commit

Permalink
fix(cli): readd c# support.
Browse files Browse the repository at this point in the history
  • Loading branch information
buehler committed Nov 24, 2023
1 parent 464638c commit 7c76e54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>buehler/renovate-config", ":disableMajorUpdates"],
"ignorePaths": ["_old/", "examples/"],
"ignorePaths": ["_old/", "examples/", "src/KubeOps.Generator/"],
"dotnet": {
"ignoreDeps": ["StyleCop.Analyzers", "Microsoft.CodeAnalysis.CSharp"]
"ignoreDeps": ["StyleCop.Analyzers"]
}
}
6 changes: 5 additions & 1 deletion src/KubeOps.Cli/KubeOps.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.2.1" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.6.10" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.8.0"/>
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.8.0" />
<PackageReference Include="Spectre.Console" Version="0.48.0" />
<PackageReference Include="Spectre.Console.Analyzer" Version="0.48.0">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 7c76e54

Please sign in to comment.