Image-Sorter/Image Sorter/Image Sorter.csproj

21 lines
632 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2021-03-12 18:07:52 +13:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<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-03-12 18:07:52 +13:00
<ItemGroup>
<Folder Include="Properties\" />
2021-03-12 18:07:52 +13:00
</ItemGroup>
2021-03-12 18:07:52 +13:00
<ItemGroup>
<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>
</Project>