-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventHubListener.csproj
More file actions
32 lines (32 loc) · 1.21 KB
/
EventHubListener.csproj
File metadata and controls
32 lines (32 loc) · 1.21 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<ApplicationIcon>azure-event-hub.ico</ApplicationIcon>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
</PropertyGroup>
<ItemGroup>
<Content Include="azure-event-hub.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.15.0" />
<PackageReference Include="Azure.ResourceManager" Version="1.13.2" />
<PackageReference Include="Azure.ResourceManager.Resources" Version="1.11.0" />
<PackageReference Include="Azure.ResourceManager.EventHubs" Version="1.2.0" />
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.12.2" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="PublishedExecutable\" />
</ItemGroup>
</Project>