From 86d917b60999a6076967b0c9006b85dc32312cd4 Mon Sep 17 00:00:00 2001 From: rogeralsing Date: Sat, 24 Dec 2016 15:17:46 +0100 Subject: [PATCH] net core --- .gitattributes | 63 ++++++++++ languages/csharp/GAM.sln | 108 +++++++++++------- .../examples/PingPongBenchmark/App.config | 6 - .../PingPongBenchmark.csproj | 58 ---------- .../examples/PingPongBenchmark/Program.cs | 15 --- .../Properties/AssemblyInfo.cs | 45 -------- .../SpawnBenchmark/Properties/AssemblyInfo.cs | 45 -------- .../SpawnBenchmark/SpawnBenchmark.csproj | 65 ++--------- .../remotebenchmark/Messages/Messages.csproj | 69 ++--------- .../Messages/Properties/AssemblyInfo.cs | 45 -------- .../remotebenchmark/Messages/packages.config | 4 - .../examples/remotebenchmark/Node1/App.config | 6 - .../remotebenchmark/Node1/Node1.csproj | 98 ++-------------- .../Node1/Properties/AssemblyInfo.cs | 45 -------- .../remotebenchmark/Node1/packages.config | 7 -- .../examples/remotebenchmark/Node2/App.config | 14 --- .../remotebenchmark/Node2/Node2.csproj | 78 ++----------- .../Node2/Properties/AssemblyInfo.cs | 45 -------- .../remotebenchmark/Node2/packages.config | 4 - .../src/GAM.Remoting/GAM.Remoting.csproj | 94 ++------------- .../GAM.Remoting/Properties/AssemblyInfo.cs | 45 -------- languages/csharp/src/GAM.Remoting/app.config | 11 -- .../csharp/src/GAM.Remoting/packages.config | 8 -- languages/csharp/src/GAM/GAM.csproj | 101 ++-------------- .../csharp/src/GAM/Properties/AssemblyInfo.cs | 45 -------- languages/csharp/src/GAM/packages.config | 10 -- 26 files changed, 191 insertions(+), 943 deletions(-) create mode 100644 .gitattributes delete mode 100644 languages/csharp/examples/PingPongBenchmark/App.config delete mode 100644 languages/csharp/examples/PingPongBenchmark/PingPongBenchmark.csproj delete mode 100644 languages/csharp/examples/PingPongBenchmark/Program.cs delete mode 100644 languages/csharp/examples/PingPongBenchmark/Properties/AssemblyInfo.cs delete mode 100644 languages/csharp/examples/SpawnBenchmark/Properties/AssemblyInfo.cs delete mode 100644 languages/csharp/examples/remotebenchmark/Messages/Properties/AssemblyInfo.cs delete mode 100644 languages/csharp/examples/remotebenchmark/Messages/packages.config delete mode 100644 languages/csharp/examples/remotebenchmark/Node1/App.config delete mode 100644 languages/csharp/examples/remotebenchmark/Node1/Properties/AssemblyInfo.cs delete mode 100644 languages/csharp/examples/remotebenchmark/Node1/packages.config delete mode 100644 languages/csharp/examples/remotebenchmark/Node2/App.config delete mode 100644 languages/csharp/examples/remotebenchmark/Node2/Properties/AssemblyInfo.cs delete mode 100644 languages/csharp/examples/remotebenchmark/Node2/packages.config delete mode 100644 languages/csharp/src/GAM.Remoting/Properties/AssemblyInfo.cs delete mode 100644 languages/csharp/src/GAM.Remoting/app.config delete mode 100644 languages/csharp/src/GAM.Remoting/packages.config delete mode 100644 languages/csharp/src/GAM/Properties/AssemblyInfo.cs delete mode 100644 languages/csharp/src/GAM/packages.config diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..1ff0c4230 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/languages/csharp/GAM.sln b/languages/csharp/GAM.sln index d421c4efd..86169e508 100644 --- a/languages/csharp/GAM.sln +++ b/languages/csharp/GAM.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 +# Visual Studio 15 +VisualStudioVersion = 15.0.26014.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GAM.Remoting", "src\GAM.Remoting\GAM.Remoting.csproj", "{C5B136C4-6EBD-4694-9664-0072DE878296}" EndProject @@ -9,73 +9,99 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{771514F1-12A EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{59DCCC96-DDAF-469F-9E8E-9BC733285082}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Labb", "examples\Labb\Labb.csproj", "{ABADF472-0EDE-4EC0-8AC1-B8612EFF76FE}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GAM", "src\GAM\GAM.csproj", "{C036F196-0AA6-4C3D-B340-93A922461B54}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpawnBenchmark", "examples\SpawnBenchmark\SpawnBenchmark.csproj", "{1E773156-B0DA-40C1-B910-40D22F3B5C0D}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PingPongBenchmark", "examples\PingPongBenchmark\PingPongBenchmark.csproj", "{5FF8A2FF-C690-407F-8FF6-7B461B7A6DF2}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RemoteBenchmark", "RemoteBenchmark", "{92EB7B8A-7DCC-426A-9386-F58C167D82C3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Node2", "examples\remotebenchmark\Node2\Node2.csproj", "{6B7E2016-120A-48A3-BF73-5C15B40354D5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Messages", "examples\RemoteBenchmark\Messages\Messages.csproj", "{55904739-71E8-478F-8BBD-9A32CAE9E01B}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RemoteBenchmark", "RemoteBenchmark", "{92EB7B8A-7DCC-426A-9386-F58C167D82C3}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Node2", "examples\RemoteBenchmark\Node2\Node2.csproj", "{DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Node1", "examples\remotebenchmark\Node1\Node1.csproj", "{0A4E7EA2-BF6C-4DEE-A76B-E0AD50847AB0}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SpawnBenchmark", "examples\SpawnBenchmark\SpawnBenchmark.csproj", "{76BA8256-C071-4353-B5A3-FA0E4BC444EF}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Messages", "examples\remotebenchmark\Messages\Messages.csproj", "{E36B82BA-D7D2-42F7-A946-462573BAE266}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SpawnBenchmark", "SpawnBenchmark", "{9EA30F02-E35A-4EB2-80D9-1C64ED4613C4}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {C5B136C4-6EBD-4694-9664-0072DE878296}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C5B136C4-6EBD-4694-9664-0072DE878296}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C5B136C4-6EBD-4694-9664-0072DE878296}.Debug|x64.ActiveCfg = Debug|x64 + {C5B136C4-6EBD-4694-9664-0072DE878296}.Debug|x64.Build.0 = Debug|x64 + {C5B136C4-6EBD-4694-9664-0072DE878296}.Debug|x86.ActiveCfg = Debug|x86 + {C5B136C4-6EBD-4694-9664-0072DE878296}.Debug|x86.Build.0 = Debug|x86 {C5B136C4-6EBD-4694-9664-0072DE878296}.Release|Any CPU.ActiveCfg = Release|Any CPU {C5B136C4-6EBD-4694-9664-0072DE878296}.Release|Any CPU.Build.0 = Release|Any CPU - {ABADF472-0EDE-4EC0-8AC1-B8612EFF76FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ABADF472-0EDE-4EC0-8AC1-B8612EFF76FE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ABADF472-0EDE-4EC0-8AC1-B8612EFF76FE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ABADF472-0EDE-4EC0-8AC1-B8612EFF76FE}.Release|Any CPU.Build.0 = Release|Any CPU + {C5B136C4-6EBD-4694-9664-0072DE878296}.Release|x64.ActiveCfg = Release|x64 + {C5B136C4-6EBD-4694-9664-0072DE878296}.Release|x64.Build.0 = Release|x64 + {C5B136C4-6EBD-4694-9664-0072DE878296}.Release|x86.ActiveCfg = Release|x86 + {C5B136C4-6EBD-4694-9664-0072DE878296}.Release|x86.Build.0 = Release|x86 {C036F196-0AA6-4C3D-B340-93A922461B54}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C036F196-0AA6-4C3D-B340-93A922461B54}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C036F196-0AA6-4C3D-B340-93A922461B54}.Debug|x64.ActiveCfg = Debug|x64 + {C036F196-0AA6-4C3D-B340-93A922461B54}.Debug|x64.Build.0 = Debug|x64 + {C036F196-0AA6-4C3D-B340-93A922461B54}.Debug|x86.ActiveCfg = Debug|x86 + {C036F196-0AA6-4C3D-B340-93A922461B54}.Debug|x86.Build.0 = Debug|x86 {C036F196-0AA6-4C3D-B340-93A922461B54}.Release|Any CPU.ActiveCfg = Release|Any CPU {C036F196-0AA6-4C3D-B340-93A922461B54}.Release|Any CPU.Build.0 = Release|Any CPU - {1E773156-B0DA-40C1-B910-40D22F3B5C0D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1E773156-B0DA-40C1-B910-40D22F3B5C0D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1E773156-B0DA-40C1-B910-40D22F3B5C0D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1E773156-B0DA-40C1-B910-40D22F3B5C0D}.Release|Any CPU.Build.0 = Release|Any CPU - {5FF8A2FF-C690-407F-8FF6-7B461B7A6DF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5FF8A2FF-C690-407F-8FF6-7B461B7A6DF2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5FF8A2FF-C690-407F-8FF6-7B461B7A6DF2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5FF8A2FF-C690-407F-8FF6-7B461B7A6DF2}.Release|Any CPU.Build.0 = Release|Any CPU - {6B7E2016-120A-48A3-BF73-5C15B40354D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6B7E2016-120A-48A3-BF73-5C15B40354D5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6B7E2016-120A-48A3-BF73-5C15B40354D5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6B7E2016-120A-48A3-BF73-5C15B40354D5}.Release|Any CPU.Build.0 = Release|Any CPU - {0A4E7EA2-BF6C-4DEE-A76B-E0AD50847AB0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0A4E7EA2-BF6C-4DEE-A76B-E0AD50847AB0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0A4E7EA2-BF6C-4DEE-A76B-E0AD50847AB0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0A4E7EA2-BF6C-4DEE-A76B-E0AD50847AB0}.Release|Any CPU.Build.0 = Release|Any CPU - {E36B82BA-D7D2-42F7-A946-462573BAE266}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E36B82BA-D7D2-42F7-A946-462573BAE266}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E36B82BA-D7D2-42F7-A946-462573BAE266}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E36B82BA-D7D2-42F7-A946-462573BAE266}.Release|Any CPU.Build.0 = Release|Any CPU + {C036F196-0AA6-4C3D-B340-93A922461B54}.Release|x64.ActiveCfg = Release|x64 + {C036F196-0AA6-4C3D-B340-93A922461B54}.Release|x64.Build.0 = Release|x64 + {C036F196-0AA6-4C3D-B340-93A922461B54}.Release|x86.ActiveCfg = Release|x86 + {C036F196-0AA6-4C3D-B340-93A922461B54}.Release|x86.Build.0 = Release|x86 + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Debug|x64.ActiveCfg = Debug|x64 + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Debug|x64.Build.0 = Debug|x64 + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Debug|x86.ActiveCfg = Debug|x86 + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Debug|x86.Build.0 = Debug|x86 + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Release|Any CPU.Build.0 = Release|Any CPU + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Release|x64.ActiveCfg = Release|x64 + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Release|x64.Build.0 = Release|x64 + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Release|x86.ActiveCfg = Release|x86 + {55904739-71E8-478F-8BBD-9A32CAE9E01B}.Release|x86.Build.0 = Release|x86 + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Debug|x64.ActiveCfg = Debug|x64 + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Debug|x64.Build.0 = Debug|x64 + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Debug|x86.ActiveCfg = Debug|x86 + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Debug|x86.Build.0 = Debug|x86 + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Release|Any CPU.Build.0 = Release|Any CPU + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Release|x64.ActiveCfg = Release|x64 + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Release|x64.Build.0 = Release|x64 + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Release|x86.ActiveCfg = Release|x86 + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB}.Release|x86.Build.0 = Release|x86 + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Debug|x64.ActiveCfg = Debug|x64 + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Debug|x64.Build.0 = Debug|x64 + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Debug|x86.ActiveCfg = Debug|x86 + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Debug|x86.Build.0 = Debug|x86 + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Release|Any CPU.Build.0 = Release|Any CPU + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Release|x64.ActiveCfg = Release|x64 + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Release|x64.Build.0 = Release|x64 + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Release|x86.ActiveCfg = Release|x86 + {76BA8256-C071-4353-B5A3-FA0E4BC444EF}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {C5B136C4-6EBD-4694-9664-0072DE878296} = {771514F1-12AE-4A26-89CB-2646D3EF7034} - {ABADF472-0EDE-4EC0-8AC1-B8612EFF76FE} = {59DCCC96-DDAF-469F-9E8E-9BC733285082} {C036F196-0AA6-4C3D-B340-93A922461B54} = {771514F1-12AE-4A26-89CB-2646D3EF7034} - {1E773156-B0DA-40C1-B910-40D22F3B5C0D} = {59DCCC96-DDAF-469F-9E8E-9BC733285082} - {5FF8A2FF-C690-407F-8FF6-7B461B7A6DF2} = {59DCCC96-DDAF-469F-9E8E-9BC733285082} - {6B7E2016-120A-48A3-BF73-5C15B40354D5} = {92EB7B8A-7DCC-426A-9386-F58C167D82C3} {92EB7B8A-7DCC-426A-9386-F58C167D82C3} = {59DCCC96-DDAF-469F-9E8E-9BC733285082} - {0A4E7EA2-BF6C-4DEE-A76B-E0AD50847AB0} = {92EB7B8A-7DCC-426A-9386-F58C167D82C3} - {E36B82BA-D7D2-42F7-A946-462573BAE266} = {92EB7B8A-7DCC-426A-9386-F58C167D82C3} + {55904739-71E8-478F-8BBD-9A32CAE9E01B} = {92EB7B8A-7DCC-426A-9386-F58C167D82C3} + {DFEEF3A8-F9EB-43AE-AA73-A5FBF7402DAB} = {92EB7B8A-7DCC-426A-9386-F58C167D82C3} + {76BA8256-C071-4353-B5A3-FA0E4BC444EF} = {9EA30F02-E35A-4EB2-80D9-1C64ED4613C4} + {9EA30F02-E35A-4EB2-80D9-1C64ED4613C4} = {59DCCC96-DDAF-469F-9E8E-9BC733285082} EndGlobalSection EndGlobal diff --git a/languages/csharp/examples/PingPongBenchmark/App.config b/languages/csharp/examples/PingPongBenchmark/App.config deleted file mode 100644 index 88fa4027b..000000000 --- a/languages/csharp/examples/PingPongBenchmark/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/languages/csharp/examples/PingPongBenchmark/PingPongBenchmark.csproj b/languages/csharp/examples/PingPongBenchmark/PingPongBenchmark.csproj deleted file mode 100644 index 1d7b481e8..000000000 --- a/languages/csharp/examples/PingPongBenchmark/PingPongBenchmark.csproj +++ /dev/null @@ -1,58 +0,0 @@ - - - - - Debug - AnyCPU - {5FF8A2FF-C690-407F-8FF6-7B461B7A6DF2} - Exe - PingPongBenchmark - PingPongBenchmark - v4.5.2 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - - {c036f196-0aa6-4c3d-b340-93a922461b54} - GAM - - - - \ No newline at end of file diff --git a/languages/csharp/examples/PingPongBenchmark/Program.cs b/languages/csharp/examples/PingPongBenchmark/Program.cs deleted file mode 100644 index 850833c7a..000000000 --- a/languages/csharp/examples/PingPongBenchmark/Program.cs +++ /dev/null @@ -1,15 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (C) 2015-2016 Asynkron HB All rights reserved -// -// ----------------------------------------------------------------------- - -namespace PingPongBenchmark -{ - class Program - { - static void Main(string[] args) - { - } - } -} \ No newline at end of file diff --git a/languages/csharp/examples/PingPongBenchmark/Properties/AssemblyInfo.cs b/languages/csharp/examples/PingPongBenchmark/Properties/AssemblyInfo.cs deleted file mode 100644 index b96593e9c..000000000 --- a/languages/csharp/examples/PingPongBenchmark/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,45 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (C) 2015-2016 Asynkron HB All rights reserved -// -// ----------------------------------------------------------------------- - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. - -[assembly: AssemblyTitle("PingPongBenchmark")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("PingPongBenchmark")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. - -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM - -[assembly: Guid("5ff8a2ff-c690-407f-8ff6-7b461b7a6df2")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] - -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file diff --git a/languages/csharp/examples/SpawnBenchmark/Properties/AssemblyInfo.cs b/languages/csharp/examples/SpawnBenchmark/Properties/AssemblyInfo.cs deleted file mode 100644 index 34c242743..000000000 --- a/languages/csharp/examples/SpawnBenchmark/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,45 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (C) 2015-2016 Asynkron HB All rights reserved -// -// ----------------------------------------------------------------------- - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. - -[assembly: AssemblyTitle("SpawnBenchmark")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("SpawnBenchmark")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. - -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM - -[assembly: Guid("1e773156-b0da-40c1-b910-40d22f3b5c0d")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] - -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file diff --git a/languages/csharp/examples/SpawnBenchmark/SpawnBenchmark.csproj b/languages/csharp/examples/SpawnBenchmark/SpawnBenchmark.csproj index eaf8a3e33..b46ef432e 100644 --- a/languages/csharp/examples/SpawnBenchmark/SpawnBenchmark.csproj +++ b/languages/csharp/examples/SpawnBenchmark/SpawnBenchmark.csproj @@ -1,69 +1,24 @@ - - - + - Debug - AnyCPU - {1E773156-B0DA-40C1-B910-40D22F3B5C0D} Exe - Properties - SpawnBenchmark - SpawnBenchmark - v4.5.2 - 512 - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - + netcoreapp1.0 - - - - - - - - + + - - + - - {c036f196-0aa6-4c3d-b340-93a922461b54} - GAM - + + + - + - + - - \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Messages/Messages.csproj b/languages/csharp/examples/remotebenchmark/Messages/Messages.csproj index 595a9db50..88fe540d8 100644 --- a/languages/csharp/examples/remotebenchmark/Messages/Messages.csproj +++ b/languages/csharp/examples/remotebenchmark/Messages/Messages.csproj @@ -1,69 +1,20 @@ - - - + - Debug - AnyCPU - {E36B82BA-D7D2-42F7-A946-462573BAE266} - Library - Properties - Messages - Messages - v4.5.2 - 512 + netstandard1.6 - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 + + library - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\..\..\packages\Google.Protobuf.3.1.0\lib\net45\Google.Protobuf.dll - True - - - - - - - - - - - - + + - - - + + + - - {c036f196-0aa6-4c3d-b340-93a922461b54} - GAM - + - - \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Messages/Properties/AssemblyInfo.cs b/languages/csharp/examples/remotebenchmark/Messages/Properties/AssemblyInfo.cs deleted file mode 100644 index 6c7111914..000000000 --- a/languages/csharp/examples/remotebenchmark/Messages/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,45 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (C) 2015-2016 Asynkron HB All rights reserved -// -// ----------------------------------------------------------------------- - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. - -[assembly: AssemblyTitle("Messages")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Messages")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. - -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM - -[assembly: Guid("e36b82ba-d7d2-42f7-a946-462573bae266")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] - -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Messages/packages.config b/languages/csharp/examples/remotebenchmark/Messages/packages.config deleted file mode 100644 index 6a2ec5f77..000000000 --- a/languages/csharp/examples/remotebenchmark/Messages/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Node1/App.config b/languages/csharp/examples/remotebenchmark/Node1/App.config deleted file mode 100644 index 88fa4027b..000000000 --- a/languages/csharp/examples/remotebenchmark/Node1/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Node1/Node1.csproj b/languages/csharp/examples/remotebenchmark/Node1/Node1.csproj index 9c6db2cd1..2c3fbf090 100644 --- a/languages/csharp/examples/remotebenchmark/Node1/Node1.csproj +++ b/languages/csharp/examples/remotebenchmark/Node1/Node1.csproj @@ -1,96 +1,22 @@ - - - + - Debug - AnyCPU - {0A4E7EA2-BF6C-4DEE-A76B-E0AD50847AB0} - Exe - Properties - Node1 - Node1 - v4.5.2 - 512 - true - - + netstandard1.6 - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 + + exe - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\..\..\packages\Google.Protobuf.3.1.0\lib\net45\Google.Protobuf.dll - True - - - ..\..\..\packages\Grpc.Core.1.0.1\lib\net45\Grpc.Core.dll - True - - - - - ..\..\..\packages\System.Interactive.Async.3.0.0\lib\net45\System.Interactive.Async.dll - True - - - - - - - - - - + + - - + + + - - {c5b136c4-6ebd-4694-9664-0072de878296} - GAM.Remoting - - - {C036F196-0AA6-4C3D-B340-93A922461B54} - GAM - - - {e36b82ba-d7d2-42f7-a946-462573bae266} - Messages - + + + - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Node1/Properties/AssemblyInfo.cs b/languages/csharp/examples/remotebenchmark/Node1/Properties/AssemblyInfo.cs deleted file mode 100644 index f0c47eaf1..000000000 --- a/languages/csharp/examples/remotebenchmark/Node1/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,45 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (C) 2015-2016 Asynkron HB All rights reserved -// -// ----------------------------------------------------------------------- - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. - -[assembly: AssemblyTitle("Node1")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Node1")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. - -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM - -[assembly: Guid("0a4e7ea2-bf6c-4dee-a76b-e0ad50847ab0")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] - -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Node1/packages.config b/languages/csharp/examples/remotebenchmark/Node1/packages.config deleted file mode 100644 index 25c13faaa..000000000 --- a/languages/csharp/examples/remotebenchmark/Node1/packages.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Node2/App.config b/languages/csharp/examples/remotebenchmark/Node2/App.config deleted file mode 100644 index d097a725f..000000000 --- a/languages/csharp/examples/remotebenchmark/Node2/App.config +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Node2/Node2.csproj b/languages/csharp/examples/remotebenchmark/Node2/Node2.csproj index 941127752..04ff7783c 100644 --- a/languages/csharp/examples/remotebenchmark/Node2/Node2.csproj +++ b/languages/csharp/examples/remotebenchmark/Node2/Node2.csproj @@ -1,79 +1,23 @@ - - - + - Debug - AnyCPU - {6B7E2016-120A-48A3-BF73-5C15B40354D5} Exe - Properties - Node2 - Node2 - v4.5.2 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 + netcoreapp1.0 - - ..\..\..\packages\Google.Protobuf.3.1.0\lib\net45\Google.Protobuf.dll - True - - - - - - - - - + + - - + + + - - + + + - - {c5b136c4-6ebd-4694-9664-0072de878296} - GAM.Remoting - - - {c036f196-0aa6-4c3d-b340-93a922461b54} - GAM - - - {e36b82ba-d7d2-42f7-a946-462573bae266} - Messages - + - - \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Node2/Properties/AssemblyInfo.cs b/languages/csharp/examples/remotebenchmark/Node2/Properties/AssemblyInfo.cs deleted file mode 100644 index a5fa249a8..000000000 --- a/languages/csharp/examples/remotebenchmark/Node2/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,45 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (C) 2015-2016 Asynkron HB All rights reserved -// -// ----------------------------------------------------------------------- - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. - -[assembly: AssemblyTitle("Node2")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Node2")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. - -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM - -[assembly: Guid("6b7e2016-120a-48a3-bf73-5c15b40354d5")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] - -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file diff --git a/languages/csharp/examples/remotebenchmark/Node2/packages.config b/languages/csharp/examples/remotebenchmark/Node2/packages.config deleted file mode 100644 index 6a2ec5f77..000000000 --- a/languages/csharp/examples/remotebenchmark/Node2/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/languages/csharp/src/GAM.Remoting/GAM.Remoting.csproj b/languages/csharp/src/GAM.Remoting/GAM.Remoting.csproj index c4911dba0..8b7236a94 100644 --- a/languages/csharp/src/GAM.Remoting/GAM.Remoting.csproj +++ b/languages/csharp/src/GAM.Remoting/GAM.Remoting.csproj @@ -1,95 +1,19 @@ - - - + - Debug - AnyCPU - {C5B136C4-6EBD-4694-9664-0072DE878296} - Library - Properties - GAM.Remoting - GAM.Remoting - v4.5.2 - 512 - - + netstandard1.6 - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 + + library - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\..\packages\Google.Protobuf.3.1.0\lib\net45\Google.Protobuf.dll - True - - - ..\..\packages\Grpc.Core.1.0.1\lib\net45\Grpc.Core.dll - True - - - - - ..\..\packages\System.Interactive.Async.3.1.1\lib\net45\System.Interactive.Async.dll - True - - - - - - - - - - - - - - - - - - + + - - - - + + - - {c036f196-0aa6-4c3d-b340-93a922461b54} - GAM - + - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - \ No newline at end of file diff --git a/languages/csharp/src/GAM.Remoting/Properties/AssemblyInfo.cs b/languages/csharp/src/GAM.Remoting/Properties/AssemblyInfo.cs deleted file mode 100644 index 734ccb6b5..000000000 --- a/languages/csharp/src/GAM.Remoting/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,45 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (C) 2015-2016 Asynkron HB All rights reserved -// -// ----------------------------------------------------------------------- - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. - -[assembly: AssemblyTitle("GAM.Remoting")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("GAM.Remoting")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. - -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM - -[assembly: Guid("c5b136c4-6ebd-4694-9664-0072de878296")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] - -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file diff --git a/languages/csharp/src/GAM.Remoting/app.config b/languages/csharp/src/GAM.Remoting/app.config deleted file mode 100644 index cb6bc0b11..000000000 --- a/languages/csharp/src/GAM.Remoting/app.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/languages/csharp/src/GAM.Remoting/packages.config b/languages/csharp/src/GAM.Remoting/packages.config deleted file mode 100644 index 0cf4754d3..000000000 --- a/languages/csharp/src/GAM.Remoting/packages.config +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/languages/csharp/src/GAM/GAM.csproj b/languages/csharp/src/GAM/GAM.csproj index feee3f1b9..2cfeeba20 100644 --- a/languages/csharp/src/GAM/GAM.csproj +++ b/languages/csharp/src/GAM/GAM.csproj @@ -1,100 +1,17 @@ - - - + - Debug - AnyCPU - {C036F196-0AA6-4C3D-B340-93A922461B54} - Library - Properties - GAM - GAM - v4.5.2 - 512 - - + netstandard1.6 - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 + + library - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\..\packages\Google.Protobuf.3.1.0\lib\net45\Google.Protobuf.dll - True - - - ..\..\packages\Grpc.Core.1.0.1\lib\net45\Grpc.Core.dll - True - - - - - ..\..\packages\System.Interactive.Async.3.0.0\lib\net45\System.Interactive.Async.dll - True - - - ..\..\packages\System.Threading.Tasks.Extensions.4.3.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll - - - ..\..\packages\System.ValueTuple.4.3.0\lib\netstandard1.0\System.ValueTuple.dll - - - - - - - - - - - - - - - - - - - - - - - - + + - - - + + + - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - \ No newline at end of file diff --git a/languages/csharp/src/GAM/Properties/AssemblyInfo.cs b/languages/csharp/src/GAM/Properties/AssemblyInfo.cs deleted file mode 100644 index 2ca9c9dc9..000000000 --- a/languages/csharp/src/GAM/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,45 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (C) 2015-2016 Asynkron HB All rights reserved -// -// ----------------------------------------------------------------------- - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. - -[assembly: AssemblyTitle("GAM")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("GAM")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. - -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM - -[assembly: Guid("c036f196-0aa6-4c3d-b340-93a922461b54")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] - -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file diff --git a/languages/csharp/src/GAM/packages.config b/languages/csharp/src/GAM/packages.config deleted file mode 100644 index 011bbaab9..000000000 --- a/languages/csharp/src/GAM/packages.config +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file