Skip to content

Commit 7bbb1ef

Browse files
committed
add empty Microsoft.Extensions.DataIngestion project so I can send next PRs in parallel
1 parent e7e0bd9 commit 7bbb1ef

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>$(TargetFrameworks);netstandard2.0</TargetFrameworks>
5+
<RootNamespace>Microsoft.Extensions.DataIngestion</RootNamespace>
6+
7+
<!-- Project reference can be removed -->
8+
<NoWarn>$(NoWarn);RT0002</NoWarn>
9+
10+
<!-- we are not ready to publish yet -->
11+
<IsPackable>false</IsPackable>
12+
<Stage>preview</Stage>
13+
<EnablePackageValidation>false</EnablePackageValidation>
14+
</PropertyGroup>
15+
16+
<ItemGroup>
17+
<ProjectReference Include="..\Microsoft.Extensions.DataIngestion.Abstractions\Microsoft.Extensions.DataIngestion.Abstractions.csproj" />
18+
</ItemGroup>
19+
20+
</Project>

test/Libraries/Microsoft.Extensions.DataIngestion.Tests/Microsoft.Extensions.DataIngestion.Tests.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
<PropertyGroup>
44
<!-- Multidimensional arrays should not be used -->
55
<NoWarn>$(NoWarn);S3967</NoWarn>
6+
<!-- Project reference can be removed -->
7+
<NoWarn>$(NoWarn);RT0002</NoWarn>
68
</PropertyGroup>
79

810
<ItemGroup>
9-
<ProjectReference Include="..\..\..\src\Libraries\Microsoft.Extensions.DataIngestion.Abstractions\Microsoft.Extensions.DataIngestion.Abstractions.csproj" />
11+
<ProjectReference Include="..\..\..\src\Libraries\Microsoft.Extensions.DataIngestion\Microsoft.Extensions.DataIngestion.csproj" />
1012
</ItemGroup>
1113

1214
</Project>

0 commit comments

Comments
 (0)