-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCosmosDBShell.csproj
More file actions
117 lines (102 loc) · 4.88 KB
/
CosmosDBShell.csproj
File metadata and controls
117 lines (102 loc) · 4.88 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DebugType>embedded</DebugType>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<ApplicationManifest>res\app.manifest</ApplicationManifest>
<HighEntropyVA>true</HighEntropyVA>
<PlatformTarget>AnyCPU</PlatformTarget>
<RootNamespace />
<AssemblyName>CosmosDBShell</AssemblyName>
<Product>CosmosDBShell</Product>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<!-- .NET Tool packaging -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>cosmosdbshell</ToolCommandName>
<!-- Removed "any"
<RuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64;any</RuntimeIdentifiers>
<ToolPackageRuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64;any</ToolPackageRuntimeIdentifiers>
-->
<RuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
<ToolPackageRuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</ToolPackageRuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup>
<PackageId>CosmosDBShell</PackageId>
<Authors>Microsoft</Authors>
<Description>Azure Cosmos DB Shell is a .NET tool with interactive navigation, query, scripting, and MCP server support for Azure Cosmos DB databases.</Description>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/Azure/CosmosDBShell</PackageProjectUrl>
<RepositoryUrl>https://github.com/Azure/CosmosDBShell</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>cosmosdb;shell;cli;mcp</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>See https://github.com/Azure/CosmosDBShell/releases for version-specific release history.</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<ItemGroup>
<!-- Expose RepositoryUrl to runtime code via [AssemblyMetadata] so
ShellInterpreter can surface it in 'version' output without duplicating the URL. -->
<AssemblyMetadata Include="RepositoryUrl" Value="$(RepositoryUrl)" />
</ItemGroup>
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'any'">
<PublishSingleFile>false</PublishSingleFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
<None Include="..\NOTICE.html" Pack="true" PackagePath="\" />
<None Include="..\LICENSE.md" Pack="true" PackagePath="\" />
<None Include="..\resources\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<None Remove="stylecop.json" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="stylecop.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="lang\en.ftl" />
<EmbeddedResource Include="Azure.Data.Cosmos.Shell.Mcp\ServerInstructions.md" />
<EmbeddedResource Include="..\docs\programming.md" Link="docs\programming.md" />
<EmbeddedResource Include="..\docs\nosql-query-language.md" Link="docs\nosql-query-language.md" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="CosmosDBShell.Tests" />
<InternalsVisibleTo Include="CosmosDBShell.Fuzzer" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Azure.Identity.Broker" />
<PackageReference Include="System.CommandLine" />
<PackageReference Include="Fluent.Net" />
<PackageReference Include="Microsoft.Azure.Cosmos" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="ModelContextProtocol" />
<PackageReference Include="ModelContextProtocol.AspNetCore" />
<PackageReference Include="OmniSharp.Extensions.LanguageServer" />
<PackageReference Include="RadLine" />
<PackageReference Include="Azure.Core" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="StyleCop.Analyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.Azure.Cosmos" />
<Using Include="Microsoft.Azure.Cosmos.Linq" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CosmosDBShell.Analyzer\CosmosDBShell.Analyzer.csproj">
<ReferenceOutputAssembly>False</ReferenceOutputAssembly>
<OutputItemType>Analyzer</OutputItemType>
</ProjectReference>
</ItemGroup>
</Project>