-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSimpleMessageBus.Samples.AzureWebJobs.csproj
More file actions
40 lines (34 loc) · 1.85 KB
/
SimpleMessageBus.Samples.AzureWebJobs.csproj
File metadata and controls
40 lines (34 loc) · 1.85 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="10.*" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.*" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="5.*" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="5.*" />
<PackageReference Include="Microsoft.Azure.WebJobs.Host.Storage" Version="5.*" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.*" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.*" />
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SimpleMessageBus.Core\SimpleMessageBus.Core.csproj" />
<ProjectReference Include="..\SimpleMessageBus.Dispatch.Azure\SimpleMessageBus.Dispatch.Azure.csproj" />
<ProjectReference Include="..\SimpleMessageBus.Dispatch\SimpleMessageBus.Dispatch.csproj" />
<ProjectReference Include="..\SimpleMessageBus.Hosting\SimpleMessageBus.Hosting.csproj" />
<ProjectReference Include="..\SimpleMessageBus.Publish.Azure\SimpleMessageBus.Publish.Azure.csproj" />
<ProjectReference Include="..\SimpleMessageBus.Samples.Core\SimpleMessageBus.Samples.Core.csproj" />
<ProjectReference Include="..\SimpleMessageBus.Samples.ExternalTriggers\SimpleMessageBus.Samples.ExternalTriggers.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="appsettings.*.json">
<DependentUpon>appsettings.json</DependentUpon>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>