Skip to content

Commit 7c76e54

Browse files
committed
fix(cli): readd c# support.
1 parent 464638c commit 7c76e54

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

renovate.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": ["github>buehler/renovate-config", ":disableMajorUpdates"],
4-
"ignorePaths": ["_old/", "examples/"],
4+
"ignorePaths": ["_old/", "examples/", "src/KubeOps.Generator/"],
55
"dotnet": {
6-
"ignoreDeps": ["StyleCop.Analyzers", "Microsoft.CodeAnalysis.CSharp"]
6+
"ignoreDeps": ["StyleCop.Analyzers"]
77
}
88
}

src/KubeOps.Cli/KubeOps.Cli.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@
1919
<ItemGroup>
2020
<PackageReference Include="BouncyCastle.Cryptography" Version="2.2.1" />
2121
<PackageReference Include="Microsoft.Build.Locator" Version="1.6.10" />
22-
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.8.0"/>
22+
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.8.0" />
23+
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.8.0" />
24+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
25+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.8.0" />
26+
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.8.0" />
2327
<PackageReference Include="Spectre.Console" Version="0.48.0" />
2428
<PackageReference Include="Spectre.Console.Analyzer" Version="0.48.0">
2529
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
 (0)