2021-04-10 16:13:33 +12:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2021-03-12 18:07:52 +13:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-04-10 16:13:33 +12:00
|
|
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
<StartupObject>Image_Sorter.Program</StartupObject>
|
|
|
|
|
<DisableWinExeOutputInference>true</DisableWinExeOutputInference>
|
2021-03-12 18:07:52 +13:00
|
|
|
|
</PropertyGroup>
|
2021-04-10 16:13:33 +12:00
|
|
|
|
|
2021-03-12 18:07:52 +13:00
|
|
|
|
<ItemGroup>
|
2021-04-10 16:13:33 +12:00
|
|
|
|
<Folder Include="Properties\" />
|
2021-03-12 18:07:52 +13:00
|
|
|
|
</ItemGroup>
|
2021-04-10 16:13:33 +12:00
|
|
|
|
|
2021-03-12 18:07:52 +13:00
|
|
|
|
<ItemGroup>
|
2021-04-10 16:13:33 +12:00
|
|
|
|
<PackageReference Include="Microsoft.Graph" Version="3.29.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Graph.Core" Version="1.25.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Identity.Client" Version="4.29.0" />
|
2021-03-12 18:07:52 +13:00
|
|
|
|
</ItemGroup>
|
2021-04-10 16:13:33 +12:00
|
|
|
|
</Project>
|