-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRoxyApi.csproj
More file actions
53 lines (47 loc) · 2.79 KB
/
Copy pathRoxyApi.csproj
File metadata and controls
53 lines (47 loc) · 2.79 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
<RootNamespace>RoxyApi</RootNamespace>
<AssemblyName>RoxyApi</AssemblyName>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Generated client members are not all XML-documented; do not fail the build on it. -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<PropertyGroup Label="Package">
<PackageId>RoxyApi.Sdk</PackageId>
<Version>0.1.40</Version>
<Authors>RoxyAPI</Authors>
<Company>RoxyAPI</Company>
<Product>RoxyAPI .NET SDK</Product>
<Description>Official .NET SDK for RoxyAPI. Astrology, Vedic astrology, numerology, tarot, and more across multiple spiritual intelligence domains behind one API key. Fully typed, generated from the OpenAPI spec, MCP ready. Add natal charts, kundli, horoscopes, and tarot to .NET apps and AI agents.</Description>
<PackageProjectUrl>https://roxyapi.com/docs/sdk</PackageProjectUrl>
<RepositoryUrl>https://github.com/RoxyAPI/sdk-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>astrology;vedic-astrology;tarot;numerology;horoscope;kundli;birth-chart;natal-chart;iching;crystals;dreams;biorhythm;human-design;spiritual;api;sdk;openapi;mcp;ai-agent;roxy</PackageTags>
</PropertyGroup>
<PropertyGroup Label="Reproducible build">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Deterministic>true</Deterministic>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup Label="Bundled in the package for nuget.org and offline AI coding agents">
<None Include="../README.md" Pack="true" PackagePath="\" Condition="Exists('../README.md')" />
<None Include="../AGENTS.md" Pack="true" PackagePath="\" Condition="Exists('../AGENTS.md')" />
<None Include="../docs/llms-full.txt" Pack="true" PackagePath="docs\" Condition="Exists('../docs/llms-full.txt')" />
<None Include="../assets/icon.png" Pack="true" PackagePath="\" Condition="Exists('../assets/icon.png')" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Bundle" Version="2.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.400">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>