22 lines
692 B
XML
22 lines
692 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Playwright" Version="1.59.0" />
|
|
<PackageReference Include="Soenneker.Playwrights.Extensions.Stealth" Version="4.0.62" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Password.txt" CopyToOutputDirectory="PreserveNewest" />
|
|
<None Include="CardDetails.txt" CopyToOutputDirectory="PreserveNewest" />
|
|
<None Include="CVV.txt" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|