Skip to content

Commit 09d9eb2

Browse files
committed
Formatting
1 parent b0384d8 commit 09d9eb2

File tree

9 files changed

+162
-160
lines changed

9 files changed

+162
-160
lines changed
Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<OutputType>Exe</OutputType>
8-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<OutputType>Exe</OutputType>
8+
</PropertyGroup>
99

10-
<ItemGroup>
11-
<PackageReference Include="Azure.Data.Tables" />
12-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
13-
<PackageReference Include="System.ComponentModel.Composition" />
14-
<PackageReference Include="System.Text.Json" />
15-
</ItemGroup>
10+
<ItemGroup>
11+
<PackageReference Include="Azure.Data.Tables" />
12+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
13+
<PackageReference Include="System.ComponentModel.Composition" />
14+
<PackageReference Include="System.Text.Json" />
15+
</ItemGroup>
1616

17-
<ItemGroup>
18-
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
19-
</ItemGroup>
17+
<ItemGroup>
18+
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
19+
</ItemGroup>
2020

21-
<Target Name="PublishToExtensionsFolder"
22-
AfterTargets="Build"
21+
<Target Name="PublishToExtensionsFolder"
22+
AfterTargets="Build"
2323
Condition=" '$(Configuration)' == 'Debug' AND '$(PublishingToExtensionsFolder)' != 'true' ">
24-
<MSBuild
25-
Projects="$(MSBuildProjectFile)"
26-
Targets="Publish"
27-
Properties="Configuration=$(Configuration);
24+
<MSBuild
25+
Projects="$(MSBuildProjectFile)"
26+
Targets="Publish"
27+
Properties="Configuration=$(Configuration);
2828
PublishProfile=PublishToExtensionsFolder;
2929
BuildProjectReferences=false;
3030
PublishingToExtensionsFolder=true" />
31-
</Target>
31+
</Target>
3232

3333
</Project>

Extensions/CognitiveSearch/Cosmos.DataTransfer.CognitiveSearchExtension/Cosmos.DataTransfer.CognitiveSearchExtension.csproj

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,29 @@
77
<OutputType>Exe</OutputType>
88
</PropertyGroup>
99

10-
<ItemGroup>
11-
<PackageReference Include="Azure.Search.Documents" />
12-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
13-
<PackageReference Include="System.ComponentModel.Composition" />
14-
<PackageReference Include="System.Interactive.Async" />
15-
<PackageReference Include="System.Linq.Async" />
16-
<PackageReference Include="System.Text.Json" />
17-
</ItemGroup>
10+
<ItemGroup>
11+
<PackageReference Include="Azure.Search.Documents" />
12+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
13+
<PackageReference Include="System.ComponentModel.Composition" />
14+
<PackageReference Include="System.Interactive.Async" />
15+
<PackageReference Include="System.Linq.Async" />
16+
<PackageReference Include="System.Text.Json" />
17+
</ItemGroup>
1818

19-
<ItemGroup>
20-
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
21-
</ItemGroup>
19+
<ItemGroup>
20+
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
21+
</ItemGroup>
2222

23-
<Target Name="PublishToExtensionsFolder"
24-
AfterTargets="Build"
23+
<Target Name="PublishToExtensionsFolder"
24+
AfterTargets="Build"
2525
Condition=" '$(Configuration)' == 'Debug' AND '$(PublishingToExtensionsFolder)' != 'true' ">
26-
<MSBuild
27-
Projects="$(MSBuildProjectFile)"
28-
Targets="Publish"
29-
Properties="Configuration=$(Configuration);
26+
<MSBuild
27+
Projects="$(MSBuildProjectFile)"
28+
Targets="Publish"
29+
Properties="Configuration=$(Configuration);
3030
PublishProfile=PublishToExtensionsFolder;
3131
BuildProjectReferences=false;
3232
PublishingToExtensionsFolder=true" />
33-
</Target>
33+
</Target>
3434

3535
</Project>
Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<OutputType>Exe</OutputType>
8-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<OutputType>Exe</OutputType>
8+
</PropertyGroup>
99

10-
<ItemGroup>
11-
<PackageReference Include="Azure.Identity" />
12-
<PackageReference Include="Azure.Security.KeyVault.Keys" />
13-
<PackageReference Include="Microsoft.Azure.Cosmos" />
14-
<PackageReference Include="Microsoft.Azure.Cosmos.Encryption" />
15-
<PackageReference Include="Microsoft.Extensions.Configuration" />
16-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
17-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
18-
<PackageReference Include="Newtonsoft.Json" />
19-
<PackageReference Include="Polly" />
20-
<PackageReference Include="System.ComponentModel.Composition" />
21-
<PackageReference Include="System.Interactive.Async" />
22-
<PackageReference Include="System.Linq.Async" />
23-
<PackageReference Include="System.Text.Json" />
24-
</ItemGroup>
10+
<ItemGroup>
11+
<PackageReference Include="Azure.Identity" />
12+
<PackageReference Include="Azure.Security.KeyVault.Keys" />
13+
<PackageReference Include="Microsoft.Azure.Cosmos" />
14+
<PackageReference Include="Microsoft.Azure.Cosmos.Encryption" />
15+
<PackageReference Include="Microsoft.Extensions.Configuration" />
16+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
17+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
18+
<PackageReference Include="Newtonsoft.Json" />
19+
<PackageReference Include="Polly" />
20+
<PackageReference Include="System.ComponentModel.Composition" />
21+
<PackageReference Include="System.Interactive.Async" />
22+
<PackageReference Include="System.Linq.Async" />
23+
<PackageReference Include="System.Text.Json" />
24+
</ItemGroup>
2525

26-
<ItemGroup>
27-
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
28-
</ItemGroup>
26+
<ItemGroup>
27+
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
28+
</ItemGroup>
2929

30-
<Target Name="PublishToExtensionsFolder"
31-
AfterTargets="Build"
30+
<Target Name="PublishToExtensionsFolder"
31+
AfterTargets="Build"
3232
Condition=" '$(Configuration)' == 'Debug' AND '$(PublishingToExtensionsFolder)' != 'true' ">
33-
<MSBuild
34-
Projects="$(MSBuildProjectFile)"
35-
Targets="Publish"
36-
Properties="Configuration=$(Configuration);
33+
<MSBuild
34+
Projects="$(MSBuildProjectFile)"
35+
Targets="Publish"
36+
Properties="Configuration=$(Configuration);
3737
PublishProfile=PublishToExtensionsFolder;
3838
BuildProjectReferences=false;
3939
PublishingToExtensionsFolder=true" />
40-
</Target>
40+
</Target>
4141
</Project>

Extensions/Csv/Cosmos.DataTransfer.CsvExtension/Cosmos.DataTransfer.CsvExtension.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
<ProjectReference Include="..\..\AzureBlob\Cosmos.DataTransfer.AzureBlobStorage\Cosmos.DataTransfer.AzureBlobStorage.csproj" />
2121
</ItemGroup>
2222

23-
<Target Name="PublishToExtensionsFolder"
23+
<Target Name="PublishToExtensionsFolder"
2424
AfterTargets="Build"
2525
Condition=" '$(Configuration)' == 'Debug' AND '$(PublishingToExtensionsFolder)' != 'true' ">
26-
<MSBuild
26+
<MSBuild
2727
Projects="$(MSBuildProjectFile)"
2828
Targets="Publish"
2929
Properties="Configuration=$(Configuration);
3030
PublishProfile=PublishToExtensionsFolder;
3131
BuildProjectReferences=false;
3232
PublishingToExtensionsFolder=true" />
33-
</Target>
33+
</Target>
3434
</Project>
Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<OutputType>Exe</OutputType>
8-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<OutputType>Exe</OutputType>
8+
</PropertyGroup>
99

10-
<ItemGroup>
11-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
12-
<PackageReference Include="System.ComponentModel.Composition" />
13-
<PackageReference Include="System.Linq.Async" />
14-
<PackageReference Include="System.Text.Json" />
15-
</ItemGroup>
10+
<ItemGroup>
11+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
12+
<PackageReference Include="System.ComponentModel.Composition" />
13+
<PackageReference Include="System.Linq.Async" />
14+
<PackageReference Include="System.Text.Json" />
15+
</ItemGroup>
1616

17-
<ItemGroup>
18-
<ProjectReference Include="..\..\..\Extensions\AwsS3\Cosmos.DataTransfer.AwsS3Storage\Cosmos.DataTransfer.AwsS3Storage.csproj" />
19-
<ProjectReference Include="..\..\..\Extensions\AzureBlob\Cosmos.DataTransfer.AzureBlobStorage\Cosmos.DataTransfer.AzureBlobStorage.csproj" />
20-
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Common\Cosmos.DataTransfer.Common.csproj" />
21-
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
22-
</ItemGroup>
17+
<ItemGroup>
18+
<ProjectReference Include="..\..\..\Extensions\AwsS3\Cosmos.DataTransfer.AwsS3Storage\Cosmos.DataTransfer.AwsS3Storage.csproj" />
19+
<ProjectReference Include="..\..\..\Extensions\AzureBlob\Cosmos.DataTransfer.AzureBlobStorage\Cosmos.DataTransfer.AzureBlobStorage.csproj" />
20+
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Common\Cosmos.DataTransfer.Common.csproj" />
21+
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
22+
</ItemGroup>
2323

24-
<Target Name="PublishToExtensionsFolder"
25-
AfterTargets="Build"
24+
<Target Name="PublishToExtensionsFolder"
25+
AfterTargets="Build"
2626
Condition=" '$(Configuration)' == 'Debug' AND '$(PublishingToExtensionsFolder)' != 'true' ">
27-
<MSBuild
28-
Projects="$(MSBuildProjectFile)"
29-
Targets="Publish"
30-
Properties="Configuration=$(Configuration);
27+
<MSBuild
28+
Projects="$(MSBuildProjectFile)"
29+
Targets="Publish"
30+
Properties="Configuration=$(Configuration);
3131
PublishProfile=PublishToExtensionsFolder;
3232
BuildProjectReferences=false;
3333
PublishingToExtensionsFolder=true" />
34-
</Target>
34+
</Target>
3535

3636
</Project>
Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<OutputType>Exe</OutputType>
8-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<OutputType>Exe</OutputType>
8+
</PropertyGroup>
99

10-
<ItemGroup>
11-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
12-
<PackageReference Include="MongoDB.Driver" />
13-
<PackageReference Include="System.ComponentModel.Composition" />
14-
</ItemGroup>
10+
<ItemGroup>
11+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
12+
<PackageReference Include="MongoDB.Driver" />
13+
<PackageReference Include="System.ComponentModel.Composition" />
14+
</ItemGroup>
1515

16-
<ItemGroup>
17-
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
18-
</ItemGroup>
16+
<ItemGroup>
17+
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
18+
</ItemGroup>
1919

20-
<Target Name="PublishToExtensionsFolder"
21-
AfterTargets="Build"
20+
<Target Name="PublishToExtensionsFolder"
21+
AfterTargets="Build"
2222
Condition=" '$(Configuration)' == 'Debug' AND '$(PublishingToExtensionsFolder)' != 'true' ">
23-
<MSBuild
24-
Projects="$(MSBuildProjectFile)"
25-
Targets="Publish"
26-
Properties="Configuration=$(Configuration);
23+
<MSBuild
24+
Projects="$(MSBuildProjectFile)"
25+
Targets="Publish"
26+
Properties="Configuration=$(Configuration);
2727
PublishProfile=PublishToExtensionsFolder;
2828
BuildProjectReferences=false;
2929
PublishingToExtensionsFolder=true" />
30-
</Target>
30+
</Target>
3131

3232
</Project>

Extensions/Parquet/Cosmos.DataTransfer.ParquetExtension/Cosmos.DataTransfer.ParquetExtension.csproj

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
23
<PropertyGroup>
34
<OutputType>Exe</OutputType>
45
<TargetFramework>net8.0</TargetFramework>
@@ -17,15 +18,16 @@
1718
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Common\Cosmos.DataTransfer.Common.csproj" />
1819
<ProjectReference Include="..\..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
1920
</ItemGroup>
20-
<Target Name="PublishToExtensionsFolder"
21-
AfterTargets="Build"
22-
Condition=" '$(Configuration)' == 'Debug' AND '$(PublishingToExtensionsFolder)' != 'true' ">
23-
<MSBuild
24-
Projects="$(MSBuildProjectFile)"
25-
Targets="Publish"
26-
Properties="Configuration=$(Configuration);
21+
22+
<Target Name="PublishToExtensionsFolder"
23+
AfterTargets="Build"
24+
Condition=" '$(Configuration)' == 'Debug' AND '$(PublishingToExtensionsFolder)' != 'true' ">
25+
<MSBuild
26+
Projects="$(MSBuildProjectFile)"
27+
Targets="Publish"
28+
Properties="Configuration=$(Configuration);
2729
PublishProfile=PublishToExtensionsFolder;
2830
BuildProjectReferences=false;
2931
PublishingToExtensionsFolder=true" />
30-
</Target>
32+
</Target>
3133
</Project>

Extensions/PostgreSQL/Cosmos.DataTransfer.PostgresqlExtension.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18-
<ProjectReference Include="..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
18+
<ProjectReference Include="..\..\Interfaces\Cosmos.DataTransfer.Interfaces\Cosmos.DataTransfer.Interfaces.csproj" />
1919
</ItemGroup>
2020
<Target Name="PublishToExtensionsFolder"
2121
AfterTargets="Build"
2222
Condition=" '$(Configuration)' == 'Debug' AND '$(PublishingToExtensionsFolder)' != 'true' ">
23-
<MSBuild
24-
Projects="$(MSBuildProjectFile)"
25-
Targets="Publish"
26-
Properties="Configuration=$(Configuration);
23+
<MSBuild
24+
Projects="$(MSBuildProjectFile)"
25+
Targets="Publish"
26+
Properties="Configuration=$(Configuration);
2727
PublishProfile=PublishToExtensionsFolder;
2828
BuildProjectReferences=false;
2929
PublishingToExtensionsFolder=true" />

0 commit comments

Comments
 (0)