mirror of
				https://github.com/nomic-ai/gpt4all.git
				synced 2025-11-03 23:47:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<Project Sdk="Microsoft.NET.Sdk">
 | 
						|
    <PropertyGroup>
 | 
						|
        <TargetFramework>net6.0</TargetFramework>
 | 
						|
        <ImplicitUsings>enable</ImplicitUsings>
 | 
						|
        <Nullable>enable</Nullable>
 | 
						|
        <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 | 
						|
        <GenerateDocumentationFile>true</GenerateDocumentationFile>
 | 
						|
    </PropertyGroup>
 | 
						|
    <ItemGroup>
 | 
						|
        <!-- Windows -->
 | 
						|
        <None Include="..\runtimes\win-x64\native\*.dll" Pack="true" PackagePath="runtimes\win-x64\native\%(Filename)%(Extension)" />
 | 
						|
        <!-- Linux -->
 | 
						|
        <None Include="..\runtimes\linux-x64\native\*.so" Pack="true" PackagePath="runtimes\linux-x64\native\%(Filename)%(Extension)" />
 | 
						|
        <!-- MacOS -->
 | 
						|
        <None Include="..\runtimes\osx\native\*.dylib" Pack="true" PackagePath="runtimes\osx\native\%(Filename)%(Extension)" />
 | 
						|
        <Content Include="..\runtimes\osx\native\*.metal" Pack="true" PackagePath="contentFiles\any\any;content">
 | 
						|
            <PackageCopyToOutput>true</PackageCopyToOutput>
 | 
						|
        </Content>
 | 
						|
    </ItemGroup>
 | 
						|
    <ItemGroup>
 | 
						|
        <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
 | 
						|
    </ItemGroup>
 | 
						|
</Project>
 |