-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (23 loc) · 1.1 KB
/
Directory.Build.props
File metadata and controls
25 lines (23 loc) · 1.1 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
<Project>
<PropertyGroup>
<!-- Central version configuration for all projects -->
<Version>0.1.3</Version>
<AssemblyVersion>0.1.3</AssemblyVersion>
<FileVersion>0.1.3</FileVersion>
<InformationalVersion>0.1.3</InformationalVersion>
<!-- Keep track of when releases occur -->
<ReleaseDate>$([System.DateTime]::UtcNow.ToString("yyyy-MM-dd"))</ReleaseDate>
<!-- Common properties for NuGet packages -->
<!-- Don't set PackageId here as it needs to be unique per project -->
<PackageFamilyName>knnlabs.Conduit</PackageFamilyName>
<PackageName>Conduit</PackageName>
<Authors>KNN Labs, Inc.</Authors>
<Company>KNN Labs, Inc.</Company>
<Product>Conduit</Product>
<Description>A unified .NET client library for interacting with various LLM providers</Description>
<Copyright>© $([System.DateTime]::UtcNow.Year) KNN Labs, Inc.</Copyright>
<PackageProjectUrl>https://github.com/knnlabs/Conduit</PackageProjectUrl>
<RepositoryUrl>https://github.com/knnlabs/Conduit</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
</Project>