22 lines
884 B
XML
22 lines
884 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="$(SolutionDir)Solution.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<AssemblyName>TcpClient</AssemblyName>
|
|
<Product>TCP Client implementation</Product>
|
|
<Description>TCP Client implementation</Description>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
|
|
<!-- Dynamic Versioning (Suitable for Release) -->
|
|
<!-- <Version>$(Version)$(Suffix)</Version> -->
|
|
|
|
<!-- Static Versioning (Suitable for Development) -->
|
|
<Version>1.0.0</Version>
|
|
<Configurations>Debug;Release;Deploy</Configurations>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|