move all the common settings to Directory.Build.props file (imported automatically by all the .csproj files in the same folder)

keep in mind that LlamaIndex.Core so far was not specifying Company
This commit is contained in:
Adam Sitnik
2025-08-05 19:03:27 +02:00
parent 7466118ca3
commit 0a06924e24
8 changed files with 11 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<!-- this file specifies a set of common properties imported by all projects in the folder -->
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Company>LlamaIndex</Company>
</PropertyGroup>
</Project>
@@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
@@ -4,7 +4,6 @@
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsAspireHost>true</IsAspireHost>
<UserSecretsId>fff811e8-12df-4169-98be-06dcae123561</UserSecretsId>
</PropertyGroup>
@@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsAspireSharedProject>true</IsAspireSharedProject>
</PropertyGroup>
@@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
@@ -2,14 +2,11 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>LlamaIndex.Core</PackageId>
<Company>LlamaIndex</Company>
</PropertyGroup>
@@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
-3
View File
@@ -2,14 +2,11 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>LlamaParse</PackageId>
<Company>LlamaIndex</Company>
</PropertyGroup>
<ItemGroup>