Skip to content

Commit c75968f

Browse files
author
Aditya Abhishek
committed
nit spaces
1 parent 151d771 commit c75968f

3 files changed

Lines changed: 16 additions & 32 deletions

File tree

src/VirtualClient/Module.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@
154154

155155
<!-- System.ServiceProcess.ServiceController -->
156156
<System_ServiceProcess_ServiceController_PackageVersion>9.0.3</System_ServiceProcess_ServiceController_PackageVersion>
157-
157+
158158
<!-- YamlDotNet -->
159159
<YamlDotNet_PackageVersion>15.1.1</YamlDotNet_PackageVersion>
160-
161-
</PropertyGroup>
160+
161+
</PropertyGroup>
162162

163163
<!--
164164
******************************************************************************

src/VirtualClient/VirtualClient.Contracts/KeyVaultDescriptor.cs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -40,22 +40,6 @@ public KeyVaultDescriptor(DependencyDescriptor descriptor)
4040
{
4141
}
4242

43-
/// <summary>
44-
/// Initializes a new instance of the <see cref="KeyVaultDescriptor"/> class.
45-
/// </summary>
46-
/// <param name="vaultUri">URI of Azure Key Vault.</param>
47-
/// <param name="objectName">Name of the Secret, key or Certificate as applicable.</param>
48-
/// <param name="objectType">Type: Secret, key or Certificate as applicable.</param>
49-
public KeyVaultDescriptor(KeyVaultObjectType objectType, string objectName, string? vaultUri = null)
50-
: base()
51-
{
52-
objectName.ThrowIfNullOrWhiteSpace(nameof(objectName));
53-
54-
this.VaultUri = vaultUri;
55-
this.Name = objectName;
56-
this.ObjectType = objectType;
57-
}
58-
5943
/// <summary>
6044
/// Gets or sets the type of the Key Vault object (e.g. "Secret", "Key", "Certificate").
6145
/// </summary>

src/VirtualClient/VirtualClient.Core.FunctionalTests/VirtualClient.Core.FunctionalTests.csproj

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -40,31 +40,31 @@
4040
DestinationFiles="$(OutputPath)packages\extensions_package_1\$(PlatformArchitectureName)\Example.VirtualClient.Extensions_1.dll"
4141
ContinueOnError="false"
4242
/>
43-
43+
4444
<Copy
4545
SourceFiles="$(ProjectDir)profiles\EXAMPLE-EXTENSIONS-1.json"
4646
DestinationFiles="$(OutputPath)packages\extensions_package_1\$(PlatformArchitectureName)\profiles\EXAMPLE-EXTENSIONS-1.json"
4747
ContinueOnError="false"
4848
/>
49-
49+
5050
<Copy
5151
SourceFiles="$(ProjectDir)profiles\EXAMPLE-EXTENSIONS-1.yml"
5252
DestinationFiles="$(OutputPath)packages\extensions_package_1\$(PlatformArchitectureName)\profiles\EXAMPLE-EXTENSIONS-1.yml"
5353
ContinueOnError="false"
5454
/>
55-
55+
5656
<Copy
5757
SourceFiles="$(ProjectDir)profiles\EXAMPLE-EXTENSIONS-2.yaml"
5858
DestinationFiles="$(OutputPath)packages\extensions_package_1\$(PlatformArchitectureName)\profiles\EXAMPLE-EXTENSIONS-2.yaml"
5959
ContinueOnError="false"
6060
/>
61-
61+
6262
<Copy
6363
SourceFiles="$(ProjectDir)extensions_package_1.vcpkg"
6464
DestinationFiles="$(OutputPath)packages\extensions_package_1\extensions_package_1.vcpkg"
6565
ContinueOnError="false"
6666
/>
67-
67+
6868
</Target>
6969

7070
<!--
@@ -76,37 +76,37 @@
7676
DestinationFiles="$(OutputPath)extensions_packages\extensions_package_2\$(PlatformArchitectureName)\Example.VirtualClient.Extensions_2.dll"
7777
ContinueOnError="false"
7878
/>
79-
79+
8080
<Copy
8181
SourceFiles="$(ProjectDir)profiles\EXAMPLE-EXTENSIONS-1.json"
8282
DestinationFiles="$(OutputPath)extensions_packages\extensions_package_2\$(PlatformArchitectureName)\profiles\EXAMPLE-EXTENSIONS-2.json"
8383
ContinueOnError="false"
8484
/>
85-
85+
8686
<Copy
8787
SourceFiles="$(ProjectDir)extensions_package_2.vcpkg"
8888
DestinationFiles="$(OutputPath)extensions_packages\extensions_package_2\extensions_package_2.vcpkg"
8989
ContinueOnError="false"
9090
/>
91-
91+
9292
<Copy
9393
SourceFiles="$(OutputPath)VirtualClient.Core.FunctionalTests.dll"
9494
DestinationFiles="$(OutputPath)extensions_packages\extensions_package_3\$(PlatformArchitectureName)\Example.VirtualClient.Extensions_3.dll"
9595
ContinueOnError="false"
9696
/>
97-
97+
9898
<Copy
9999
SourceFiles="$(ProjectDir)profiles\EXAMPLE-EXTENSIONS-1.yml"
100100
DestinationFiles="$(OutputPath)extensions_packages\extensions_package_3\$(PlatformArchitectureName)\profiles\EXAMPLE-EXTENSIONS-3.yml"
101101
ContinueOnError="false"
102102
/>
103-
103+
104104
<Copy
105105
SourceFiles="$(ProjectDir)extensions_package_3.vcpkg"
106106
DestinationFiles="$(OutputPath)extensions_packages\extensions_package_3\extensions_package_3.vcpkg"
107107
ContinueOnError="false"
108108
/>
109-
109+
110110
</Target>
111111

112112
<!--
@@ -118,13 +118,13 @@
118118
DestinationFiles="$(OutputPath)extensions\extensions_1\Example.VirtualClient.Extensions_4.dll"
119119
ContinueOnError="false"
120120
/>
121-
121+
122122
<Copy
123123
SourceFiles="$(OutputPath)VirtualClient.Core.FunctionalTests.dll"
124124
DestinationFiles="$(OutputPath)extensions\extensions_2\Example.VirtualClient.Extensions_5.dll"
125125
ContinueOnError="false"
126126
/>
127-
127+
128128
</Target>
129129

130130
</Project>

0 commit comments

Comments
 (0)