Changed name on main files on server and client

This commit is contained in:
Pontus Fransson 2013-11-19 09:34:24 +01:00
parent 1022b15ea2
commit c04593b575
7 changed files with 15 additions and 10 deletions

View File

@ -3,7 +3,7 @@ using namespace std;
int main()
{
cout << "Asd" << endl;
cout << "Client" << endl;
return 0;

View File

@ -149,7 +149,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp" />
<ClCompile Include="ClientMain.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">

View File

@ -15,7 +15,7 @@
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
<ClCompile Include="ClientMain.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>

View File

@ -149,7 +149,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp" />
<ClCompile Include="ServerMain.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">

View File

@ -15,7 +15,7 @@
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
<ClCompile Include="ServerMain.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>

View File

@ -0,0 +1,10 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Server" << endl;
return 0;
}

View File

@ -1,5 +0,0 @@
int main()
{
return 0;
}