-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSymProxyCloud.csproj
28 lines (24 loc) · 1016 Bytes
/
SymProxyCloud.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Authors>Microsoft Corporation</Authors>
<Company>Microsoft Corporation</Company>
<Description></Description>
<PackAsTool>False</PackAsTool>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.11.4" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="8.0.0" />
<PackageReference Include="Microsoft.Graph" Version="5.43.0" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.4.0" />
</ItemGroup>
<ItemGroup>
<None Update="AppSettings.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>