-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (20 loc) · 887 Bytes
/
Directory.Build.props
File metadata and controls
23 lines (20 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Deterministic>true</Deterministic>
<ImplicitUsings>true</ImplicitUsings>
<!-- While ManagePackageVersionsCentrally is in preview, the default is opt out. https://github.com/NuGet/Home/wiki/Centrally-managing-NuGet-package-versions#opt-in-central-package-version-management -->
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.Reflection" />
<Using Include="Azure" />
<Using Include="Azure.Core.Serialization" />
<Using Include="Azure.Messaging.ServiceBus" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Messaging.ServiceBus" />
</ItemGroup>
</Project>