|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 |
| - <RootNamespace>AWS Cryptography DynamoDb Encryption</RootNamespace> |
| 4 | + <OutputType>Library</OutputType> |
| 5 | + <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
| 6 | + <IsPackable>true</IsPackable> |
| 7 | + |
| 8 | + <Version>3.2.0</Version> |
| 9 | + |
| 10 | + <AssemblyName>AWS.Cryptography.DbEncryptionSDK.DynamoDb</AssemblyName> |
| 11 | + <PackageId>AWS.Cryptography.DbEncryptionSDK.DynamoDb</PackageId> |
| 12 | + <Title>AWSDatabaseEncryptionSDKDynamoDB</Title> |
| 13 | + |
| 14 | + <Description>The AWS Database Encryption SDK for DyanamoDB in .NET abstracts client-side encryption for Amazon DynamoDB operations. It uses cryptographic best practices to protect the data keys that protect your data.</Description> |
| 15 | + <Authors>Amazon Web Services</Authors> |
| 16 | + <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
| 17 | + <RepositoryUrl>https://github.com/aws/aws-database-encryption-sdk-dynamodb</RepositoryUrl> |
| 18 | + <PackageIcon>icon.png</PackageIcon> |
| 19 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 20 | + <PackageTags>AWS;Amazon;KMS;Encryption;Cryptography;DynamoDB</PackageTags> |
| 21 | + |
5 | 22 | <ImplicitUsings>enable</ImplicitUsings>
|
6 | 23 | <Nullable>disable</Nullable>
|
7 | 24 | <LangVersion>10</LangVersion>
|
8 | 25 | <TargetFrameworks>net6.0;net48</TargetFrameworks>
|
9 | 26 | <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
| 27 | + <!-- |
| 28 | + Ignore errors from generated code. Ideally this would be scoped to just the relevant files. |
| 29 | + CS0105: duplicate namespace, CS0618: obsolete members |
| 30 | + --> |
| 31 | + <NoWarn>CS0105,CS0618</NoWarn> |
10 | 32 | </PropertyGroup>
|
11 | 33 |
|
12 | 34 | <ItemGroup>
|
|
27 | 49 | <Compile Include="ImplementationFromDafny.cs"/>
|
28 | 50 | </ItemGroup>
|
29 | 51 |
|
30 |
| - <!-- |
31 |
| - TODO .NET assemblies are expected to have an ICON. |
32 |
| - This MUST be replaced before launch. |
33 |
| - --> |
34 |
| - <!-- <ItemGroup> |
35 |
| - <None Include="..\icon.png" Pack="true" PackagePath="" /> |
36 |
| - <None Include="..\README.md" Pack="true" PackagePath="" /> |
37 |
| - </ItemGroup> --> |
| 52 | + <ItemGroup> |
| 53 | + <None Include="..\..\icon.png" Pack="true" PackagePath="" /> |
| 54 | + <None Include="..\..\README.md" Pack="true" PackagePath="" /> |
| 55 | + </ItemGroup> |
38 | 56 |
|
39 | 57 | </Project>
|
0 commit comments