- Add Microsoft.Web.WebView2 package - New EbayLoginWindow using Edge (WebView2) instead of IE — handles modern eBay login pages - Intercept ThirdPartyAuthSucessFailure redirect to extract auth code - Remove invalid sell.listing scope that caused immediate invalid_scope error - Add detailed browser navigation logging for diagnostics Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
<AssemblyName>EbayListingTool</AssemblyName>
|
|
<RootNamespace>EbayListingTool</RootNamespace>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- UI Theme -->
|
|
<PackageReference Include="MahApps.Metro" Version="2.4.10" />
|
|
<PackageReference Include="MahApps.Metro.IconPacks" Version="4.11.0" />
|
|
|
|
<!-- Spreadsheet / CSV import -->
|
|
<PackageReference Include="ClosedXML" Version="0.103.0" />
|
|
<PackageReference Include="CsvHelper" Version="33.0.1" />
|
|
|
|
<!-- Config + JSON -->
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2651.64" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="sample-import.csv">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|