-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
31 lines (30 loc) · 1.45 KB
/
Directory.Build.props
File metadata and controls
31 lines (30 loc) · 1.45 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DeterministicSourcePaths>true</DeterministicSourcePaths>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<NoWarn>$(NoWarn);CS1591;FS0044</NoWarn>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<Authors>ARCP Contributors</Authors>
<Company>ARCP</Company>
<Product>ARCP F# SDK</Product>
<Version>0.1.0</Version>
<Copyright>(c) ARCP Contributors. Licensed under Apache-2.0.</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/agentruntimecontrolprotocol/fsharp-sdk</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Description>F# reference implementation of the Agent Runtime Control Protocol (ARCP) v1.0.</Description>
<PackageTags>arcp;agent;protocol;runtime;mcp;fsharp</PackageTags>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="all" />
</ItemGroup>
</Project>