-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBotCity.Maestro.SDK.csproj
42 lines (40 loc) · 1.81 KB
/
BotCity.Maestro.SDK.csproj
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
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<OutputType>Library</OutputType>
<Version>1.0.16</Version>
<PackageVersion>1.0.16</PackageVersion>
<PackageId>BotCity.Maestro.SDK</PackageId>
<PackageTags>botcity sdk automation automation desktop</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://botcity.dev/</PackageProjectUrl>
<RepositoryType>GitHub</RepositoryType>
<RepositoryUrl>https://github.com/botcity-dev/botcity-maestro-sdk-csharp</RepositoryUrl>
<PackageIconUrl>https://developers.botcity.dev/favicon.ico</PackageIconUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>BotCity</Authors>
<Description>BotCity SDK </Description>
<NeutralLanguage>en-US</NeutralLanguage>
<Company>BotCity</Company>
<Owners>BotCity</Owners>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<EmbedAllSources>true</EmbedAllSources>
<Nullable>enable</Nullable>
<LangVersion>8.0</LangVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="RestSharp" Version="112.0.0" />
</ItemGroup>
</Project>