-
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.64 KB
/
Directory.Build.props
File metadata and controls
33 lines (30 loc) · 1.64 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>
<!-- Read the build number from a local file (not checked into git).
Falls back to 0 when the file does not exist. -->
<BuildNumberFile>$([System.IO.Path]::Combine($(MSBuildThisFileDirectory), 'build.number'))</BuildNumberFile>
<BuildNumber Condition="Exists('$(BuildNumberFile)')">$([System.IO.File]::ReadAllText('$(BuildNumberFile)').Trim())</BuildNumber>
<BuildNumber Condition="'$(BuildNumber)' == ''">0</BuildNumber>
<!-- Version can be overridden from the command line: -p:Version=0.3.1
AssemblyVersion and FileVersion are derived automatically by the SDK
(prerelease suffixes like -beta001 are stripped for assembly versions). -->
<Version>0.8.3</Version>
</PropertyGroup>
<!-- NuGet package metadata (shared across all packable projects) -->
<PropertyGroup>
<IsPackable>false</IsPackable>
<Authors>Marimer LLC</Authors>
<Company>Marimer LLC</Company>
<Copyright>Copyright © Marimer LLC. All rights reserved.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MarimerLLC/rockbot</PackageProjectUrl>
<RepositoryUrl>https://github.com/MarimerLLC/rockbot</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>rockbot;agent;ai;llm;messaging;framework</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<!-- Include the NuGet-specific README in all packable projects -->
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="$(MSBuildThisFileDirectory)NUGET_README.md" Pack="true" PackagePath="\README.md" />
</ItemGroup>
</Project>