forked from zhongkaifu/TensorSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
33 lines (30 loc) · 1.52 KB
/
Directory.Build.props
File metadata and controls
33 lines (30 loc) · 1.52 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
<Project>
<PropertyGroup>
<TensorSharpVersion>2.8.6</TensorSharpVersion>
<TensorSharpPackageTags>tensorsharp;tensor;llm;gguf;inference</TensorSharpPackageTags>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Authors>Zhongkai Fu</Authors>
<PackageId Condition="'$(PackageId)' == ''">$(MSBuildProjectName)</PackageId>
<Version Condition="'$(Version)' == ''">$(TensorSharpVersion)</Version>
<PackageVersion Condition="'$(PackageVersion)' == ''">$(Version)</PackageVersion>
<RepositoryUrl>https://github.com/zhongkaifu/TensorSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/zhongkaifu/TensorSharp</PackageProjectUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags Condition="'$(PackageTags)' == ''">$(TensorSharpPackageTags)</PackageTags>
<Description Condition="'$(Description)' == ''">TensorSharp project component.</Description>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable Condition="'$(IsPackable)' == ''">false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md"
Link="README.md"
Pack="true"
PackagePath=""
Condition="Exists('$(MSBuildThisFileDirectory)README.md')" />
</ItemGroup>
</Project>