16 lines
410 B
XML
16 lines
410 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CoreWCF.Http" Version="1.5.2" />
|
|
<PackageReference Include="CoreWCF.Primitives" Version="1.5.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|