-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
44 lines (41 loc) · 2.58 KB
/
Directory.Build.props
File metadata and controls
44 lines (41 loc) · 2.58 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
<Project>
<PropertyGroup>
<!-- Default target framework for projects that don't specify TargetFrameworks -->
<TargetFramework Condition="'$(TargetFrameworks)' == '' AND '$(TargetFramework)' == ''">net8.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings Condition="'$(TargetFramework)' != 'netstandard2.1' AND '$(TargetFrameworks)' == ''">enable</ImplicitUsings>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningsAsErrors />
<WarningsNotAsErrors />
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<!-- NuGet Package Metadata -->
<Version>1.0.5</Version>
<Authors>Bipins.AI</Authors>
<Company>Bipins.AI</Company>
<Product>Bipins.AI</Product>
<Description>Bipins.AI - Enterprise AI platform for building intelligent applications with RAG, multiple LLM providers, vector databases, Agentic AI, content moderation, validation, and resilience</Description>
<Copyright>Copyright © Bipins.AI</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/bipindra/Bipins.AI</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>ai;llm;rag;vector;embeddings;openai;anthropic;azure;bedrock</PackageTags>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSourceRevisionInInformationalVersion>true</IncludeSourceRevisionInInformationalVersion>
<!-- Only the main Bipins.AI package should be published -->
<IsPackable Condition="'$(MSBuildProjectName)' != 'Bipins.AI'">false</IsPackable>
<!-- Projects that should NOT be published (explicit for clarity) -->
<IsPackable Condition="'$(MSBuildProjectName)' == 'Bipins.AI.Api'">false</IsPackable>
<IsPackable Condition="'$(MSBuildProjectName)' == 'Bipins.AI.Worker'">false</IsPackable>
<IsPackable Condition="'$(MSBuildProjectName)' == 'Bipins.AI.Samples'">false</IsPackable>
<IsPackable Condition="'$(MSBuildProjectName)' == 'AICostOptimizationAdvisor.Shared'">false</IsPackable>
<IsPackable Condition="'$(MSBuildProjectName)' == 'GetCostData'">false</IsPackable>
<IsPackable Condition="'$(MSBuildProjectName)' == 'AnalyzeCosts'">false</IsPackable>
<IsPackable Condition="'$(MSBuildProjectName)' == 'GetAnalysisHistory'">false</IsPackable>
</PropertyGroup>
</Project>