-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathAzureServiceBusToSQL.csproj
More file actions
51 lines (51 loc) · 2.49 KB
/
AzureServiceBusToSQL.csproj
File metadata and controls
51 lines (51 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<OutputType>Exe</OutputType>
<ImplicitUsings>enabled</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.21.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" Version="1.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.EventGrid" Version="3.5.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.16.2" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.20.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs" Version="6.2.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="1.1.1" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.ServiceBus" Version="5.14.1" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Timer" Version="4.3.0" />
<PackageReference Include="Xenhey.BPM.Core.Net8" Version="1.0.98" />
</ItemGroup>
<ItemGroup>
<Compile Update="DBScript\College.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>College.sql</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="DBScript\College.sql">
<Generator>MSDataSetGenerator</Generator>
<LastGenOutput>College.Designer.cs</LastGenOutput>
</None>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" />
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove="C:\Users\oigbo\source\repos\oigbokwe73\Azure-Service-Bus-To-SQL\AzureServiceBusToSQL\.editorconfig" />
</ItemGroup>
<ItemGroup>
<None Include="C:\Users\oigbo\source\repos\oigbokwe73\Azure-Service-Bus-To-SQL\AzureServiceBusToSQL\.editorconfig" />
</ItemGroup>
</Project>