You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-06 10:21:09 +09:00
Lots of fixes for sample solutions
This commit is contained in:
@@ -23,6 +23,7 @@
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
@@ -32,6 +33,7 @@
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
@@ -72,8 +74,8 @@
|
||||
<Project>{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}</Project>
|
||||
<Name>Lidgren.Network</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\SamplesCommon\SamplesCommon\SamplesCommon.csproj">
|
||||
<Project>{64D2482A-3C16-4D1F-A3F6-058FC3D73E21}</Project>
|
||||
<ProjectReference Include="..\..\SamplesCommon\SamplesCommon.csproj">
|
||||
<Project>{773069DA-B66E-4667-ADCB-0D215AD8CF3E}</Project>
|
||||
<Name>SamplesCommon</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
|
||||
@@ -1,36 +1,64 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||
# Visual Studio 2008
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileStreamServer", "FileStreamServer\FileStreamServer.csproj", "{0DB2F69A-5B5E-4CC4-9D31-C34BF86B2508}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lidgren.Network", "..\..\Lidgren.Network\Lidgren.Network.csproj", "{AE483C29-042E-4226-BA52-D247CE7676DA}"
|
||||
EndProject
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 2010
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SamplesCommon", "..\SamplesCommon\SamplesCommon.csproj", "{773069DA-B66E-4667-ADCB-0D215AD8CF3E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileStreamClient", "FileStreamClient\FileStreamClient.csproj", "{5BEF5715-8B73-4A33-BE99-1B8B20542847}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lidgren.Network", "..\..\Lidgren.Network\Lidgren.Network.csproj", "{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileStreamClient", "FileStreamClient\FileStreamClient.csproj", "{386C4770-EE82-4EC6-ABDA-D8F298146E85}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileStreamServer", "FileStreamServer\FileStreamServer.csproj", "{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|Mixed Platforms = Debug|Mixed Platforms
|
||||
Debug|x86 = Debug|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|Mixed Platforms = Release|Mixed Platforms
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{0DB2F69A-5B5E-4CC4-9D31-C34BF86B2508}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{0DB2F69A-5B5E-4CC4-9D31-C34BF86B2508}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{0DB2F69A-5B5E-4CC4-9D31-C34BF86B2508}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{0DB2F69A-5B5E-4CC4-9D31-C34BF86B2508}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{AE483C29-042E-4226-BA52-D247CE7676DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{AE483C29-042E-4226-BA52-D247CE7676DA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{AE483C29-042E-4226-BA52-D247CE7676DA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{AE483C29-042E-4226-BA52-D247CE7676DA}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{773069DA-B66E-4667-ADCB-0D215AD8CF3E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{773069DA-B66E-4667-ADCB-0D215AD8CF3E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{773069DA-B66E-4667-ADCB-0D215AD8CF3E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{773069DA-B66E-4667-ADCB-0D215AD8CF3E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{773069DA-B66E-4667-ADCB-0D215AD8CF3E}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{773069DA-B66E-4667-ADCB-0D215AD8CF3E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{773069DA-B66E-4667-ADCB-0D215AD8CF3E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{5BEF5715-8B73-4A33-BE99-1B8B20542847}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{5BEF5715-8B73-4A33-BE99-1B8B20542847}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{5BEF5715-8B73-4A33-BE99-1B8B20542847}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{5BEF5715-8B73-4A33-BE99-1B8B20542847}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{773069DA-B66E-4667-ADCB-0D215AD8CF3E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{773069DA-B66E-4667-ADCB-0D215AD8CF3E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{773069DA-B66E-4667-ADCB-0D215AD8CF3E}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{386C4770-EE82-4EC6-ABDA-D8F298146E85}.Debug|Any CPU.ActiveCfg = Debug|x86
|
||||
{386C4770-EE82-4EC6-ABDA-D8F298146E85}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
|
||||
{386C4770-EE82-4EC6-ABDA-D8F298146E85}.Debug|Mixed Platforms.Build.0 = Debug|x86
|
||||
{386C4770-EE82-4EC6-ABDA-D8F298146E85}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{386C4770-EE82-4EC6-ABDA-D8F298146E85}.Debug|x86.Build.0 = Debug|x86
|
||||
{386C4770-EE82-4EC6-ABDA-D8F298146E85}.Release|Any CPU.ActiveCfg = Release|x86
|
||||
{386C4770-EE82-4EC6-ABDA-D8F298146E85}.Release|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{386C4770-EE82-4EC6-ABDA-D8F298146E85}.Release|Mixed Platforms.Build.0 = Release|x86
|
||||
{386C4770-EE82-4EC6-ABDA-D8F298146E85}.Release|x86.ActiveCfg = Release|x86
|
||||
{386C4770-EE82-4EC6-ABDA-D8F298146E85}.Release|x86.Build.0 = Release|x86
|
||||
{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}.Debug|Any CPU.ActiveCfg = Debug|x86
|
||||
{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
|
||||
{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}.Debug|Mixed Platforms.Build.0 = Debug|x86
|
||||
{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}.Debug|x86.Build.0 = Debug|x86
|
||||
{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}.Release|Any CPU.ActiveCfg = Release|x86
|
||||
{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}.Release|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}.Release|Mixed Platforms.Build.0 = Release|x86
|
||||
{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}.Release|x86.ActiveCfg = Release|x86
|
||||
{CBE7FC2B-BC28-4361-B8F0-62493B82C8E1}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
@@ -32,6 +33,7 @@
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
@@ -73,8 +75,8 @@
|
||||
<Project>{49BA1C69-6104-41AC-A5D8-B54FA9F696E8}</Project>
|
||||
<Name>Lidgren.Network</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\SamplesCommon\SamplesCommon\SamplesCommon.csproj">
|
||||
<Project>{64D2482A-3C16-4D1F-A3F6-058FC3D73E21}</Project>
|
||||
<ProjectReference Include="..\..\SamplesCommon\SamplesCommon.csproj">
|
||||
<Project>{773069DA-B66E-4667-ADCB-0D215AD8CF3E}</Project>
|
||||
<Name>SamplesCommon</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user