Skip to content

Commit

Permalink
Merge pull request #6 from akon47/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
akon47 authored Aug 26, 2021
2 parents 419784c + 7c5120e commit 0845e5a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 101 deletions.
36 changes: 0 additions & 36 deletions SimpleTcp/Properties/AssemblyInfo.cs

This file was deleted.

91 changes: 26 additions & 65 deletions SimpleTcp/SimpleTcp.csproj
Original file line number Diff line number Diff line change
@@ -1,69 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E8130B7F-ACA9-4A90-B257-171DE7430D59}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SimpleTcp</RootNamespace>
<AssemblyName>SimpleTcp</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>A simple-to-use TCP server and client library.</Description>
<PackageId>SimpleTcpLib</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/akon47/SimpleTcp</PackageProjectUrl>
<RepositoryUrl>https://github.com/akon47/SimpleTcp</RepositoryUrl>
<PackageTags>SimpleTcp Tcp Client Server Socket</PackageTags>
<PackageReleaseNotes>change .Net Frameworkd to .Net Standard</PackageReleaseNotes>
<AssemblyVersion>1.0.2.0</AssemblyVersion>
<FileVersion>1.0.2.0</FileVersion>
<Version>1.0.2</Version>
<PackageIcon>logo.png</PackageIcon>
<PackageIconUrl />
<Authors>Kim Hwan</Authors>
<Company>Kim Hwan</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Client\BaseTcpClient.cs" />
<Compile Include="Client\BaseTcpClientEvent.cs" />
<Compile Include="Client\PacketTcpClient.cs" />
<Compile Include="Client\PacketTcpClientEvent.cs" />
<Compile Include="Client\RawTcpClient.cs" />
<Compile Include="Client\RawTcpClientEvent.cs" />
<Compile Include="Server\BaseTcpServerEvent.cs" />
<Compile Include="Server\IClient.cs" />
<Compile Include="Server\BaseTcpServer.cs" />
<Compile Include="Server\IPacket.cs" />
<Compile Include="Server\PacketTcpServer.cs" />
<Compile Include="Server\PacketTcpServerEvent.cs" />
<Compile Include="Server\RawTcpServer.cs" />
<Compile Include="Server\RawTcpServerEvent.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utils\RingBuffer.cs" />
<Compile Include="Utils\SocketUtils.cs" />
</ItemGroup>
<ItemGroup>
<None Include=".editorconfig" />
</ItemGroup>

<ItemGroup>
<None Include="logo.png" />
<None Include="logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

</Project>

0 comments on commit 0845e5a

Please sign in to comment.