Skip to content

Commit 08b6c96

Browse files
committed
include debug symbols
1 parent d09778e commit 08b6c96

File tree

1 file changed

+32
-26
lines changed

1 file changed

+32
-26
lines changed
Lines changed: 32 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,37 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
5-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6-
<Version>1.3.0.0</Version>
7-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
8-
<Authors>Giovanni Galbo</Authors>
9-
<Company>Giovanni Galbo</Company>
10-
<Description>Geared more toward Azure Table Storage (vs CosmosDB, which has an ATS api), using an intra/inter partition (or table) secondary index pattern. This library handles keeping the indexes up to date as data gets mutated.</Description>
11-
<Copyright>2020</Copyright>
12-
<PackageIcon>xtensible-x.png</PackageIcon>
13-
<RepositoryUrl>https://github.com/giometrix/TableStorage.Abstractions.POCO</RepositoryUrl>
14-
<PackageTags>table-storage azure-table-storage poco table-entities tableentity index secondary-index</PackageTags>
15-
<AssemblyVersion>1.3.0.0</AssemblyVersion>
16-
<PackageReleaseNotes>Updated underlying table storage</PackageReleaseNotes>
17-
<FileVersion>1.3.0.0</FileVersion>
18-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6+
<Version>1.3.0.0</Version>
7+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
8+
<Authors>Giovanni Galbo</Authors>
9+
<Company>Giovanni Galbo</Company>
10+
<Description>Geared more toward Azure Table Storage (vs CosmosDB, which has an ATS api), using an intra/inter partition (or table) secondary index pattern. This library handles keeping the indexes up to date as data gets mutated.</Description>
11+
<Copyright>2020</Copyright>
12+
<PackageIcon>xtensible-x.png</PackageIcon>
13+
<RepositoryUrl>https://github.com/giometrix/TableStorage.Abstractions.POCO</RepositoryUrl>
14+
<PackageTags>table-storage azure-table-storage poco table-entities tableentity index secondary-index</PackageTags>
15+
<AssemblyVersion>1.3.0.0</AssemblyVersion>
16+
<PackageReleaseNotes>Updated underlying table storage</PackageReleaseNotes>
17+
<FileVersion>1.3.0.0</FileVersion>
18+
<IncludeSymbols>true</IncludeSymbols>
19+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
20+
</PropertyGroup>
1921

20-
<ItemGroup>
21-
<None Include="xtensible-x.png">
22-
<Pack>True</Pack>
23-
<PackagePath></PackagePath>
24-
</None>
25-
</ItemGroup>
22+
<ItemGroup>
23+
<None Include="xtensible-x.png">
24+
<Pack>True</Pack>
25+
<PackagePath></PackagePath>
26+
</None>
27+
</ItemGroup>
2628

27-
<ItemGroup>
28-
<PackageReference Include="TableStorage.Abstractions.POCO" Version="3.0.0" />
29-
</ItemGroup>
29+
<ItemGroup>
30+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
31+
<PrivateAssets>all</PrivateAssets>
32+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
33+
</PackageReference>
34+
<PackageReference Include="TableStorage.Abstractions.POCO" Version="3.0.0" />
35+
</ItemGroup>
3036

31-
</Project>
37+
</Project>

0 commit comments

Comments
 (0)