15 lines
340 B
XML
15 lines
340 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<Nullable>disable</Nullable>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Titanium.Web.Proxy" Version="3.2.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|