|
4 | 4 | <TargetFramework>net8.0</TargetFramework>
|
5 | 5 | <ImplicitUsings>enable</ImplicitUsings>
|
6 | 6 | <Nullable>enable</Nullable>
|
| 7 | + |
| 8 | + <PackageId>Authzed.Net</PackageId> |
| 9 | + <!-- NOTE: This gets overridden by a CLI flag on publish. --> |
| 10 | + <Version>0.1.0-alpha</Version> |
| 11 | + |
| 12 | + <Description> |
| 13 | + This client library enables working with the SpiceDB centralized authorization system. |
| 14 | + For documentation, see https://authzed.com/docs or the README at https://github.com/authzed/authzed-dotnet. |
| 15 | + For the changelog for this library, see the github releases: https://github.com/authzed/authzed-dotnet/releases |
| 16 | + </Description> |
| 17 | + |
| 18 | + <PackageTags>authzed;authz;authorization;zanzibar;spicedb;spicedb client</PackageTags> |
| 19 | + <Authors>Employees of Authzed, Inc</Authors> |
| 20 | + <Copyright>Copyright © Authzed, Inc 2024</Copyright> |
| 21 | + <Company>Authzed, Inc</Company> |
| 22 | + |
| 23 | + <PackageProjectUrl>https://authzed.com</PackageProjectUrl> |
| 24 | + <RepositoryUrl>https://github.com/authzed/authzed-dotnet</RepositoryUrl> |
| 25 | + <RepositoryType>git</RepositoryType> |
| 26 | + <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
| 27 | + <!-- TODO: --> |
| 28 | + <!--<PackageIcon>Icon.png</PackageIcon>--> |
| 29 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
7 | 30 | </PropertyGroup>
|
8 | 31 |
|
9 | 32 | <ItemGroup>
|
|
14 | 37 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
15 | 38 | <PrivateAssets>all</PrivateAssets>
|
16 | 39 | </PackageReference>
|
| 40 | + |
| 41 | + <None Include="$(MSBuildThisFileDirectory)..\..\LICENSE" Pack="true" PackagePath=""/> |
| 42 | + <None Include="$(MSBuildThisFileDirectory)..\..\README.md" Pack="true" PackagePath=""/> |
| 43 | + <!-- TODO: --> |
| 44 | + <!--<None Include="$(MSBuildThisFileDirectory)..\..\Icon.png" Pack="true" PackagePath=""/>--> |
17 | 45 | </ItemGroup>
|
18 | 46 |
|
19 | 47 | </Project>
|
0 commit comments