-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathManagedCode.Database.AzureTables.csproj
More file actions
33 lines (28 loc) · 1.22 KB
/
ManagedCode.Database.AzureTables.csproj
File metadata and controls
33 lines (28 loc) · 1.22 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>11</LangVersion>
<IsPackable>True</IsPackable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<DebugType>embedded</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Nullable>enable</Nullable>
<AssemblyName>ManagedCode.Database.AzureTables</AssemblyName>
<RootNamespace>ManagedCode.Database.AzureTables</RootNamespace>
</PropertyGroup>
<!--NuGet-->
<PropertyGroup>
<Title>ManagedCode.Repository.AzureTables</Title>
<PackageId>ManagedCode.Database.AzureTables</PackageId>
<Description>Repository for AzureTables</Description>
<PackageTags>managedcode, repository, AzureTables</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ManagedCode.Database.Core\ManagedCode.Database.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Data.Tables" Version="12.8.0" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
</ItemGroup>
</Project>