Skip to content

Commit cfc4306

Browse files
authoredApr 23, 2020
stylecop fix followup, enforce SA1503 (#432)
* enforce SA1503 * fix spacing * fix SA1413 * fix spacing * fix SA1013
1 parent 324a3e7 commit cfc4306

File tree

75 files changed

+1072
-786
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1072
-786
lines changed
 

‎Directory.Build.targets

+4
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@
88
<PrivateAssets>All</PrivateAssets>
99
</PackageReference>
1010
</ItemGroup>
11+
12+
<ItemGroup>
13+
<AdditionalFiles Include="$(MSBuildThisFileDirectory)\stylecop.json" Visible="false" />
14+
</ItemGroup>
1115
</Project>

‎examples/attach/Attach.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ private static async Task Main(string[] args)
2323

2424
private async static Task AttachToPod(IKubernetes client, V1Pod pod)
2525
{
26-
var webSocket = await client.WebSocketNamespacedPodAttachAsync(pod.Metadata.Name, "default", pod.Spec.Containers[0].Name);
26+
var webSocket =
27+
await client.WebSocketNamespacedPodAttachAsync(pod.Metadata.Name, "default",
28+
pod.Spec.Containers[0].Name);
2729

2830
var demux = new StreamDemuxer(webSocket);
2931
demux.Start();

0 commit comments

Comments
 (0)
Please sign in to comment.