• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

ソケットを使ってクライアントサーバプログラムを作成するための C# ライブラリ


Commit MetaInfo

Revisãoc85a5a35eabff4d2a102dfdd88b76a45991e2f68 (tree)
Hora2015-08-30 12:11:09
Autortsntsumi <tsntsumi@tsnt...>
Commitertsntsumi

Mensagem de Log

SocketNet ソリューションとプロジェクトのバージョンを 1.1 に変更

サンプルのバージョンは 1.0 のままとした。

Mudança Sumário

Diff

--- a/doc/Doxyfile
+++ b/doc/Doxyfile
@@ -38,7 +38,7 @@ PROJECT_NAME = SocketNet
3838 # could be handy for archiving the generated documentation or if some version
3939 # control system is used.
4040
41-PROJECT_NUMBER = 1.0
41+PROJECT_NUMBER = 1.1
4242
4343 # Using the PROJECT_BRIEF tag one can provide an optional one line description
4444 # for a project that appears at the top of each page and should give viewer a
--- a/src/SocketNet/SampleChatClient/SampleChatClient.csproj
+++ b/src/SocketNet/SampleChatClient/SampleChatClient.csproj
@@ -9,6 +9,8 @@
99 <AssemblyName>SampleChatClient</AssemblyName>
1010 <ReleaseVersion>1.0</ReleaseVersion>
1111 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+ <SynchReleaseVersion>false</SynchReleaseVersion>
13+ <Description>Sample Tcp Chat Client Class</Description>
1214 </PropertyGroup>
1315 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1416 <DebugSymbols>true</DebugSymbols>
--- a/src/SocketNet/SampleChatGtkClient/SampleChatGtkClient.csproj
+++ b/src/SocketNet/SampleChatGtkClient/SampleChatGtkClient.csproj
@@ -9,6 +9,8 @@
99 <AssemblyName>SampleChatGtkClient</AssemblyName>
1010 <ReleaseVersion>1.0</ReleaseVersion>
1111 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+ <SynchReleaseVersion>false</SynchReleaseVersion>
13+ <Description>Sample Tcp Chat Client with Gtk#</Description>
1214 </PropertyGroup>
1315 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1416 <DebugSymbols>true</DebugSymbols>
--- a/src/SocketNet/SampleChatServer/SampleChatServer.csproj
+++ b/src/SocketNet/SampleChatServer/SampleChatServer.csproj
@@ -9,6 +9,8 @@
99 <AssemblyName>SampleChatServer</AssemblyName>
1010 <ReleaseVersion>1.0</ReleaseVersion>
1111 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+ <SynchReleaseVersion>false</SynchReleaseVersion>
13+ <Description>Sample Tcp Chat Sever</Description>
1214 </PropertyGroup>
1315 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1416 <DebugSymbols>true</DebugSymbols>
--- a/src/SocketNet/SampleUdpChatGtkClient/SampleUdpChatGtkClient.csproj
+++ b/src/SocketNet/SampleUdpChatGtkClient/SampleUdpChatGtkClient.csproj
@@ -8,6 +8,9 @@
88 <RootNamespace>SampleUdpChatGtkClient</RootNamespace>
99 <AssemblyName>SampleUdpChatGtkClient</AssemblyName>
1010 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
11+ <ReleaseVersion>1.0</ReleaseVersion>
12+ <SynchReleaseVersion>false</SynchReleaseVersion>
13+ <Description>Sample Udp Chat Client with Gtk#</Description>
1114 </PropertyGroup>
1215 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1316 <DebugSymbols>true</DebugSymbols>
--- a/src/SocketNet/SocketNet.sln
+++ b/src/SocketNet/SocketNet.sln
@@ -47,6 +47,6 @@ Global
4747 $2.Text = @\n ${FileName}\n \n Author:\n ${AuthorName} <${AuthorEmail}>\n \n Copyright (c) ${Year} ${CopyrightHolder}\n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.
4848 $2.IncludeInNewFiles = True
4949 description = A Socket Networking (C/S) Library.
50- version = 1.0
50+ version = 1.1
5151 EndGlobalSection
5252 EndGlobal
--- a/src/SocketNet/SocketNet/SocketNet.csproj
+++ b/src/SocketNet/SocketNet/SocketNet.csproj
@@ -9,7 +9,7 @@
99 <AssemblyName>SocketNet</AssemblyName>
1010 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1111 <ReleaseVersion>1.1</ReleaseVersion>
12- <SynchReleaseVersion>false</SynchReleaseVersion>
12+ <Description>A Socket Networking (C/S) Library.</Description>
1313 </PropertyGroup>
1414 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1515 <DebugSymbols>true</DebugSymbols>