-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpiProject.csproj
More file actions
25 lines (21 loc) · 994 Bytes
/
piProject.csproj
File metadata and controls
25 lines (21 loc) · 994 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>842aa538-32cf-4bdc-b00c-e5e8bd1585ff</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<None Include="appsettings*.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Remove="DockerFile" />
<PackageReference Include="Azure.Identity" Version="1.8.1" />
<PackageReference Include="Iot.Device.Bindings" Version="2.3.0-prerelease.22520.10" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="7.0.0" />
<PackageReference Include="Microsoft.Graph" Version="4.53.0" />
</ItemGroup>
</Project>