|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | | - <Description> |
4 | | - The official .NET library for the Orb C# service API. |
5 | | - </Description> |
6 | | - <AssemblyTitle>SDK Code Generation Orb C#</AssemblyTitle> |
7 | | - <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
8 | | - |
9 | | - <Nullable>enable</Nullable> |
10 | | - |
| 3 | + <!-- Metadata --> |
| 4 | + <AssemblyTitle>Orb C#</AssemblyTitle> |
| 5 | + <AssemblyName>Orb</AssemblyName> |
11 | 6 | <VersionPrefix>0.0.1</VersionPrefix> |
12 | | - |
13 | | - <TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks> |
14 | | - <LangVersion>latest</LangVersion> |
15 | | - |
16 | | - <!-- Generate an XML documentation file for the project. --> |
17 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
18 | | - |
19 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
20 | | - |
| 7 | + <Authors>Orb</Authors> |
| 8 | + <Company>Orb</Company> |
| 9 | + <Description>The official .NET library for the Orb API.</Description> |
| 10 | + <PackageTags>sdk;api;http;library</PackageTags> |
| 11 | + <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
| 12 | + <Copyright>Copyright 2025 Orb</Copyright> |
| 13 | + <PackageProjectUrl>https://docs.withorb.com/reference/api-reference</PackageProjectUrl> |
21 | 14 | <RepositoryUrl>https://www.github.com/orbcorp/orb-csharp</RepositoryUrl> |
22 | 15 | <RepositoryType>git</RepositoryType> |
| 16 | + <OutputType>Library</OutputType> |
23 | 17 |
|
24 | | - <!-- Embed source files that are not tracked by the source control manager in the PDB --> |
25 | | - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
26 | | - |
27 | | - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
28 | | - |
29 | | - <!-- Disable missing XML documentation warnings --> |
| 18 | + <!-- Documentation--> |
| 19 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 20 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 21 | + <!-- Disable missing XML documentation warnings. --> |
30 | 22 | <NoWarn>$(NoWarn),1570,1573,1574,1591</NoWarn> |
31 | 23 |
|
32 | | - <!-- Disable deprecation warnings since we may reference our own deprecated symbols --> |
33 | | - <NoWarn>$(NoWarn),0618</NoWarn> |
| 24 | + <!-- Source link --> |
| 25 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 26 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 27 | + <IncludeSymbols>true</IncludeSymbols> |
| 28 | + <DebugType>embedded</DebugType> |
34 | 29 |
|
| 30 | + <TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks> |
| 31 | + <LangVersion>12</LangVersion> |
35 | 32 | <Configurations>Debug;Release</Configurations> |
36 | | - |
| 33 | + <BuildPackage>true</BuildPackage> |
| 34 | + <Deterministic>true</Deterministic> |
| 35 | + <Nullable>enable</Nullable> |
| 36 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
37 | 37 | <ImplicitUsings>disable</ImplicitUsings> |
| 38 | + <!-- Disable deprecation warnings since we may reference our own deprecated symbols. --> |
| 39 | + <NoWarn>$(NoWarn),0618</NoWarn> |
38 | 40 | </PropertyGroup> |
39 | 41 | <ItemGroup> |
40 | 42 | <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
41 | 43 | <PackageReference Include="System.Text.Json" Version="9.0.9" /> |
| 44 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
42 | 45 | </ItemGroup> |
43 | 46 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
44 | 47 | <PackageReference Include="System.Collections.Immutable" Version="8.0.0" /> |
|
0 commit comments