- Add LiveChartsCore.SkiaSharpView.WPF 2.0.0-rc5.4 package reference - Create FileTypeMetric record with Extension, TotalSizeBytes, FileCount - Include DisplayLabel computed property for chart label binding Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
56 lines
2.2 KiB
XML
56 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
<StartupObject>SharepointToolbox.App</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(PublishSingleFile)' == 'true'">
|
|
<SelfContained>true</SelfContained>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ApplicationDefinition Remove="App.xaml" />
|
|
<Page Include="App.xaml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Localization\Strings.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Update="Localization\Strings.fr.resx">
|
|
<DependentUpon>Strings.resx</DependentUpon>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\bulk_add_members.csv" />
|
|
<EmbeddedResource Include="Resources\bulk_create_sites.csv" />
|
|
<EmbeddedResource Include="Resources\folder_structure.csv" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
|
|
<PackageReference Include="CsvHelper" Version="33.1.0" />
|
|
<PackageReference Include="LiveChartsCore.SkiaSharpView.WPF" Version="2.0.0-rc5.4" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
|
|
<PackageReference Include="Microsoft.Graph" Version="5.74.0" />
|
|
<PackageReference Include="Microsoft.Identity.Client" Version="4.83.3" />
|
|
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.82.1" />
|
|
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.83.3" />
|
|
<PackageReference Include="PnP.Framework" Version="1.18.0" />
|
|
<PackageReference Include="Serilog" Version="4.3.1" />
|
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="10.0.0" />
|
|
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|