forked from microsoftgraph/msgraph-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmsgraph-cli.csproj
More file actions
34 lines (31 loc) · 1.7 KB
/
Copy pathmsgraph-cli.csproj
File metadata and controls
34 lines (31 loc) · 1.7 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Microsoft.Graph.Cli</RootNamespace>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<PublishReadyToRun>true</PublishReadyToRun>
<AssemblyName>mgc</AssemblyName>
<Version>0.1.0-preview.5</Version>
</PropertyGroup>
<PropertyGroup>
<DefaultExcludesInProjectFolder>$(DefaultItemExcludes);**/*.sample.*</DefaultExcludesInProjectFolder>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.6.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
<PackageReference Include="Microsoft.Graph.Cli.Core" Version="0.1.2-preview.1" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.0.0-preview.8" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.0.0-preview.3" />
<PackageReference Include="Microsoft.Kiota.Cli.Commons" Version="0.1.9-preview.2" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.0.0-preview.8" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.0.0-preview.6" />
<PackageReference Include="System.CommandLine.Hosting" Version="0.4.0-alpha.22272.1" />
</ItemGroup>
</Project>